aibow/.forgejo/workflows/ci.yml
tmk3ki f37f3f4929
Some checks failed
CI / build (push) Failing after 38s
Add CI: go build + go vet
2026-07-26 19:17:02 +09:00

15 lines
213 B
YAML

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: docker
container:
image: golang:1.26
steps:
- uses: actions/checkout@v4
- run: go build ./...
- run: go vet ./...