Bump percore from 0.2.2 to 0.2.3 #103
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: Rust | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install aarch64 toolchain | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| targets: aarch64-unknown-none | |
| - name: Create dummy payload | |
| run: dd if=/dev/zero of=payload.bin bs=1024 count=1024 | |
| - name: Build for QEMU | |
| run: make build.qemu | |
| - name: Run clippy | |
| run: make clippy | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Format Rust code | |
| run: cargo fmt --all -- --check |