yaju-is-always-watching-you/.forgejo/workflows/ci.yml
awayatan f47fef177b
Some checks failed
CI / test (push) Failing after 4s
Add yaju-is-always-watching-you: Forgejo goroku-check webhook bot
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>
2026-07-26 22:47:12 +09:00

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 ./...