Allow getting individual parameters without a mask #652
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: CSH CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: libcurl4-openssl-dev libzmq3-dev libsocketcan-dev libpython3-dev | |
| - name: Install gcovr | |
| run: pip3 install gcovr==8.3 meson==1.8.1 | |
| - name: Build | |
| run: ./configure -Db_coverage=true && ninja -C builddir -v | |
| - name: Run gcovr | |
| run: ninja -C builddir test coverage-text && tail -n3 builddir/meson-logs/coverage.txt |