Bump slothy from 63c92b9 to 4b5076d
#321
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: Run tests on qemu platforms | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: nix develop -c bash -e {0} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup nix | |
| uses: ./.github/actions/setup-nix | |
| with: | |
| script: | | |
| arm-none-eabi-gcc --version | |
| qemu-system-arm --version | |
| - name: Make all | |
| run: | | |
| make -j$(nproc) check |