Changed hardcoded path to not be so hardcoded :3 #110
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: Compile Checks | |
on: | |
push: | |
jobs: | |
compile-checks: | |
name: Check project compiles | |
strategy: | |
matrix: | |
preset: | |
- nucleo-debug | |
- nucleo-release | |
- nucleo-relwithdebinfo | |
- nucleo-debug-eth | |
- nucleo-release-eth | |
- nucleo-relwithdebinfo-eth | |
- board-debug | |
- board-release | |
- board-relwithdebinfo | |
- board-debug-eth | |
- board-release-eth | |
- board-relwithdebinfo-eth | |
- simulator | |
fail-fast: false | |
uses: ./.github/workflows/build.yml | |
with: | |
preset: ${{ matrix.preset }} |