From 79c6f41da1f08fd5d2a97371afca9376678dbaac Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 28 Dec 2024 22:09:54 +0100 Subject: [PATCH] Actually testing on forgjoe --- .forgejo/workflows/debian-tests.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .forgejo/workflows/debian-tests.yaml 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