ted/.forgejo/workflows/ci.yaml
Leon Mika 41ab161fab
All checks were successful
ci / Build (push) Successful in 1m9s
Release / Build (push) Successful in 1m8s
Release / Release MacOS (push) Successful in 2m20s
Removed unnecessary services
2025-11-12 22:13:13 +11:00

30 lines
664 B
YAML

name: ci
on:
push:
branches:
- main
- feature/*
jobs:
Build:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.25
- name: Configure
run: |
git config --global url."https://${{ secrets.GO_MODULES_TOKEN }}:x-oauth-basic@github.com/lmika".insteadOf "https://github.com/lmika"
- name: Test
run: |
set -xue
go get ./...
go test -p 1 ./...
env:
TEST_DYNAMO_URL: "http://localstack:4566"
GOPRIVATE: "github:com/lmika/*"