Bump slothy from 0f6b99d
to 09a9d3b
#186
Workflow file for this run
This file contains 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: Build everything | |
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) |