mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-26 21:27:38 +02:00
23 lines
401 B
YAML
23 lines
401 B
YAML
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
|