Files
go-extractor/.gitea/workflows/ci.yml
Steve Dudenhoeffer 022e002f98
Some checks failed
CI / test (push) Failing after 15s
CI / vet (push) Failing after 15s
CI / build (push) Failing after 18s
ci: use gitea.com action mirrors instead of github.com
GitHub is returning 500 errors for actions/checkout and actions/setup-go.
Switch to Gitea's own mirrors at gitea.com/actions/ to avoid the dependency.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-09 14:09: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@v5
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@v5
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@v5
with:
go-version-file: go.mod
- run: go vet ./...