Add a CI check
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/manual/woodpecker Pipeline was successful

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>
This commit is contained in:
2026-08-17 07:07:33 +02:00
co-authored by Claude Opus 5
parent 220e4b7016
commit 425465d9ce
+12
View File
@@ -0,0 +1,12 @@
# 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 ./...