timetable-mgr/.gitea/workflows/go-test.yaml
Fred Boniface 2505c28794
Some checks failed
Go Test / test (push) Failing after 1m22s
Fix path for test running
2024-04-05 22:05:30 +01:00

22 lines
326 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 ./..