diff --git a/.forgejo/workflows/debian-tests.yaml b/.forgejo/workflows/debian-tests.yaml new file mode 100644 index 0000000..c1bb391 --- /dev/null +++ b/.forgejo/workflows/debian-tests.yaml @@ -0,0 +1,14 @@ +on: + push: + branches: + - 'master' +jobs: + test: + runs-on: debian + container: + image: debian:bookworm + steps: + - run: apt update + - run: apt install make gcc -y + - run: make test/test.elf + - run: ./test/test.elf