Files
mash/.woodpecker/workflow.yaml
haxala1r 48a5bf6ee5
Some checks failed
ci/woodpecker/push/workflow Pipeline failed
Added test workflow file
2025-09-30 20:17:47 +03:00

18 lines
431 B
YAML

when:
- event: push
- event: tag
steps:
- name: build
image: gcc:latest
commands: # we probably shouldn't install cmake every time
- apt update && apt install -y cmake
- cd build
- cmake ..
- make
- name: test
image: ubuntu
commands:
# TODO: Probably make actual tests at some point
- echo "(print 42)" | ./main
# TODO: add publish step, when we're at a working state.