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>
This commit is contained in:
@@ -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 ./...
|
||||
Reference in New Issue
Block a user