Add CI: go build + go vet
Some checks failed
CI / build (push) Failing after 38s

This commit is contained in:
tmk3ki 2026-07-25 18:53:59 +09:00
parent d302287dd7
commit f37f3f4929

15
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,15 @@
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 ./...