Normalize supervisor mismatch failure mode naming #80
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up build toolchain | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends build-essential cmake | |
| - name: Configure SIL tests | |
| run: cmake -S tests/sil -B build | |
| - name: Build SIL tests | |
| run: cmake --build build | |
| - name: Run SIL tests | |
| run: ctest --test-dir build --output-on-failure |