This repository was archived by the owner on Mar 28, 2026. It is now read-only.
Compiler stuff #35
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install build dependencies from debian/control | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install --yes devscripts equivs | |
| sudo mk-build-deps -i -r -t "apt-get --yes" debian/control | |
| - name: Configure | |
| run: cmake -B build -DCMAKE_BUILD_TYPE=Debug | |
| - name: Build | |
| run: cmake --build build | |
| - name: Run tests | |
| run: | | |
| cd build | |
| ctest --output-on-failure |