fix: make cargo check all targets. #41
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
| # This workflow runs cargo test on every pushed commit. | |
| name: Run Toolchain "My Programs" | |
| on: | |
| push: | |
| branches: | |
| jobs: | |
| run-toolchain-my-programs: | |
| uses: ./.github/workflows/nix-command.yml | |
| with: | |
| command: | | |
| cargo build -p fubox | |
| cd fuste/tests/toolchain | |
| nix develop | |
| cargo run --target riscv32i-ramate-fuste-elf.json -p my-program | |
| cargo run --target riscv32i-ramate-fuste-elf.json -p my-fuste-program | |
| cargo run --target riscv32i-ramate-fuste-elf.json -p my-fuste-heap-program | |
| nix_flake_path: '.' | |
| runner: 'ubuntu-latest' |