Files
steamcache2/.gitea/workflows/test-pr.yaml
Justin Harms f951f5fd8e
All checks were successful
Release Tag / release (push) Successful in 9s
chore: rename workflows for clarity and consistency
2025-01-22 18:00:55 -06:00

19 lines
434 B
YAML

name: PR Check
on:
- pull_request
jobs:
check-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- run: go mod tidy
- uses: golangci/golangci-lint-action@v3
with:
args: -D errcheck
version: latest
- run: go build ./...
- run: go test -race -v -shuffle=on ./...