mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-26 21:27:38 +02:00
24 lines
440 B
YAML
24 lines
440 B
YAML
name: verify
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: gcc --version
|
|
- run: clang-format --version
|
|
- run: sudo apt-get install -y libmicrohttpd-dev
|
|
- name: check
|
|
working-directory: ./backend
|
|
run: make check
|
|
- name: build
|
|
working-directory: ./backend
|
|
run: make all
|