Some checks failed
CI / test (push) Failing after 4s
Watches issue/PR comments and pushes for flagged phrases; warns commenters via reply and opens a redacted correction PR for flagged file content, never rewriting history or deleting content directly. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
17 lines
267 B
YAML
17 lines
267 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
container:
|
|
image: golang:1.26-alpine
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: go build ./...
|
|
- run: go vet ./...
|
|
- run: go test ./...
|