19 lines
367 B
YAML
19 lines
367 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: x86_64
|
|
steps:
|
|
- uses: https://gitea.com/actions/checkout@v4
|
|
- uses: https://gitea.com/actions/setup-go@v5
|
|
with:
|
|
go-version-file: go.mod
|
|
- name: Run tests
|
|
run: go test -v -race -coverprofile=coverage.out ./...
|