24 lines
425 B
YAML
24 lines
425 B
YAML
|
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
|