From 272f0dac595d49ef6ba65f866b2c52d5b5809de5 Mon Sep 17 00:00:00 2001 From: "S. F. Jakobsen" Date: Fri, 20 Mar 2026 13:26:34 +0100 Subject: [PATCH] add .github/workflows/verify.yml --- .github/workflows/verify.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/verify.yml diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml new file mode 100644 index 0000000..e37802b --- /dev/null +++ b/.github/workflows/verify.yml @@ -0,0 +1,22 @@ +name: verify + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + verify: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: install dependencies + run: apt install -y libmicrohttpd + - name: check + working-directory: ./backend + run: make check + - name: build + working-directory: ./backend + run: make all