Files
steamcache2/.gitea/workflows/test-pr.yaml
Justin Harms 93b682cfa5
Some checks failed
PR Check / check-and-test (pull_request) Failing after 15s
chore: update action versions to latest in CI workflow
2025-07-12 07:08:25 -05:00

19 lines
446 B
YAML

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