Fix tracker.Restore test, add CT workflow #5

Merged
roysc merged 4 commits from fix-restore-test into main 2024-07-08 07:19:02 +00:00
Showing only changes of commit ec6b6821b9 - Show all commits

23
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Test
on:
pull_request:
branches: '*'
push:
branches:
- main
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
check-latest: true
- name: Run unit tests
run: |
go test -v -p 1 ./...
go test -v ./tracker -count 20