Update crates to work with riscv
0.12 and riscv-rt
0.13
#80
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
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
merge_group: | |
name: Code formatting check | |
jobs: | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Rust toolchain | |
run: rustup update stable && rustup default stable | |
- name: Check code formatting | |
run: cargo fmt --all -- --check --verbose |