Skip to content

Bump percore from 0.2.2 to 0.2.3 #103

Bump percore from 0.2.2 to 0.2.3

Bump percore from 0.2.2 to 0.2.3 #103

Workflow file for this run

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