Files
steamcache2/.gitea/workflows/test-pr.yaml
Justin Harms 0a73e46f90
All checks were successful
PR Check / check-and-test (pull_request) Successful in 1m42s
fix: remove golangci-lint-action from PR workflow
2025-07-12 07:16:48 -05:00

15 lines
323 B
YAML

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