add .github/workflows/verify.yml

This commit is contained in:
S. F. Jakobsen 2026-03-20 13:26:34 +01:00 committed by GitHub
parent 704f84f430
commit 272f0dac59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

22
.github/workflows/verify.yml vendored Normal file
View File

@ -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