fix uninitialized rs.coefs in nanorq_decoder_add_symbol #69
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: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt install clang-tools valgrind | |
| - name: Tests | |
| run: make check | |
| - name: Clang Analyzer | |
| run: make scan | |
| - name: Valgrind | |
| run: make valgrind | |
| - name: Interoperability Tests | |
| run: make check-interop |