Add compiler defines for pico2w to bluetooth MIDI #474
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 Tests | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: sudo ./scripts/install-gtest.sh Debug /usr/local | |
| - name: Configure | |
| run: cmake -S. --preset ci | |
| - name: Build | |
| run: cmake --build --preset ci | |
| - name: Test | |
| run: ctest --preset ci |