Life Before Death (#25) #72
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: A-Team Common | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| test-firmware-build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: cachix/install-nix-action@v16 | |
| with: | |
| extra_nix_config: | |
| access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
| - name: Validate Nix Envoirnment | |
| shell: bash | |
| run: | | |
| nix flake check | |
| nix develop -c cargo --version | |
| - name: Build Common Items | |
| shell: bash | |
| run: | | |
| nix develop -c make bindgen-packets | |
| - name: Test Common Items | |
| shell: bash | |
| run: | | |
| nix develop -c make bindgen-packets-test |