docs: update use cases #156
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: tests | |
| on: push | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Install gtest | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install googletest libgtest-dev libgmock-dev | |
| - name: Install arm compiler | |
| run: | | |
| sudo apt-get install -y make gcc-arm-none-eabi | |
| - name: Install fftw3 | |
| run: | | |
| sudo apt-get install -y libfftw3-dev | |
| - name: Build and run tests | |
| run: | | |
| cd Tests | |
| make coverage |