diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml new file mode 100644 index 0000000..3f1551c --- /dev/null +++ b/.woodpecker/build.yaml @@ -0,0 +1,8 @@ +when: + - event: [push, pull_request, manual] + +steps: + - name: build + image: masscollabs/build-essential:latest + commands: + - make diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2009017 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +all: + gcc -Wall -Wextra -pedantic -Werror -o executable c-basic/*.c