touka/.github/workflows/test.yml
WJQSERVER e5400c2da7
Some checks are pending
Go Test / test (push) Waiting to run
Update test.yml
2026-03-28 01:34:45 +08:00

22 lines
372 B
YAML

name: Go Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Run tests
run: go test -v ./...
- name: Run tests race
run: go test -race -v ./...