Files
go-extractor/.gitea/workflows/ci.yml
Steve Dudenhoeffer 294097c3b6
Some checks failed
CI / vet (push) Failing after 26s
CI / build (push) Failing after 32s
CI / test (push) Failing after 36s
fix: use setup-go@v3 (latest available on gitea.com mirror)
The gitea.com/actions/setup-go mirror only has tags up to v3.
v3 supports go-version-file which is all we need.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-09 14:13:46 -05:00

36 lines
764 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: https://gitea.com/actions/checkout@v4
- uses: https://gitea.com/actions/setup-go@v3
with:
go-version-file: go.mod
- run: go build ./...
test:
runs-on: ubuntu-latest
steps:
- uses: https://gitea.com/actions/checkout@v4
- uses: https://gitea.com/actions/setup-go@v3
with:
go-version-file: go.mod
- run: go test ./...
vet:
runs-on: ubuntu-latest
steps:
- uses: https://gitea.com/actions/checkout@v4
- uses: https://gitea.com/actions/setup-go@v3
with:
go-version-file: go.mod
- run: go vet ./...