Some checks are pending
CI / test (push) Waiting to run
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>
17 lines
274 B
YAML
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 ./...
|