move scripts to scripts #10
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 Pipeline | |
| on: | |
| push: | |
| jobs: | |
| run-pipeline: | |
| name: Run CI Pipeline | |
| runs-on: ubuntu-22.04 | |
| continue-on-error: true | |
| steps: | |
| - name: Checkout this repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install dependencies | |
| run: | |
| - name: Build firmware binary debug | |
| run: | |
| - name: Build firmware binary release | |
| run: | |
| - name: Build and run unit tests | |
| run: | |
| - name: Run formatting check | |
| uses: waterloo-rocketry/actions/clang-format-check@main | |
| with: | |
| clang-format-config-path: "src/third_party/rocketlib/.clang-format" | |
| c-source-files: "" |