Skip to content

Archive verification-loop task: 4 findings verified by codex, evidenc… #7

Archive verification-loop task: 4 findings verified by codex, evidenc…

Archive verification-loop task: 4 findings verified by codex, evidenc… #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: gofmt
run: |
unformatted=$(gofmt -l .)
if [ -n "$unformatted" ]; then
echo "gofmt needed on:"
echo "$unformatted"
exit 1
fi
- run: go build ./...
- run: go vet ./...
- run: go test -race ./...