timetable-mgr/.gitea/workflows/go-test.yaml
Fred Boniface 0a7b399caf
Some checks failed
Go Test / test (push) Failing after 1m9s
Try again to get action working
2024-04-05 22:08:17 +01:00

20 lines
307 B
YAML

name: Go Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Run tests
run: cd ./src && go test ./..