Files
gorpg/.woodpecker.yaml
T
mr.zeroandClaude Opus 5 425465d9ce
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/manual/woodpecker Pipeline was successful
Add a CI check
The repo was registered in Woodpecker but had no pipeline, so nothing
ever ran on it. There is no test suite here, so the check is what can
actually catch a regression in a library: that it still compiles and
loads.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-17 07:07:33 +02:00

13 lines
457 B
YAML

# A könyvtárnak nincs teszt-suite-ja, ezért a regressziót a fordítás és a
# `go vet` fogja meg. Az ebitengine builder image kell hozzá: az Ebitengine
# Linuxon cgo-t használ, tehát a fordításhoz X11/GL/ALSA fejlécek kellenek.
steps:
- name: test
image: git.teletypegames.org/build/ebitengine-builder:latest
commands:
- go version
- echo "==> go build"
- go build ./...
- echo "==> go vet"
- go vet ./...