yaju-is-always-watching-you/.forgejo/workflows/ci.yml
awayatan 6e023d1081
Some checks are pending
CI / test (push) Waiting to run
Fix CI: runner label should be ubuntu-latest, not docker
runs-on selects a registered runner label; forgejo-runner's default
label is ubuntu-latest, so the job never got picked up under "docker".

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-26 22:55:14 +09:00

17 lines
274 B
YAML

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
container:
image: golang:1.26-alpine
steps:
- uses: actions/checkout@v4
- run: go build ./...
- run: go vet ./...
- run: go test ./...