Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 17: cannot unmarshal !!seq into string
2026-03-20 13:44:13 +01:00

27 lines
503 B
YAML

name: verify
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: versions
run:
- gcc --version
- clang-format --version
- 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