diff --git a/.woodpecker/workflow.yaml b/.woodpecker/workflow.yaml new file mode 100644 index 0000000..99f079c --- /dev/null +++ b/.woodpecker/workflow.yaml @@ -0,0 +1,18 @@ +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. \ No newline at end of file