Files
kratisto 94d2d5cd96
All checks were successful
Build / build (push) Successful in 1m28s
golangci-lint / lint (push) Successful in 2m24s
Test / test (push) Successful in 1m39s
chore: update gitea action
2026-01-27 02:28:27 +01:00

24 lines
466 B
YAML

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0 # all history for all branches and tags
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
cache: false
- name: Run go test
run: go test -mod vendor -race -coverprofile coverage.out -v ./...