Merge pull request #139 from Space-and-Satellite-Systems-UC-Davis/123… #236
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: C CI | |
| on: | |
| push: | |
| pull_request: | |
| merge_group: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: get compiler version | |
| run: make version | |
| - name: make project | |
| run: make | |
| - name: run tests | |
| run: make test | |
| - name: groundstation | |
| run: cd groundstation && make |