mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-27 05:37:39 +02:00
23 lines
414 B
YAML
23 lines
414 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: sudo apt-get install -y libmicrohttpd-dev
|
|
- name: check
|
|
working-directory: ./backend
|
|
run: make check
|
|
- name: build
|
|
working-directory: ./backend
|
|
run: make all
|