Skip to content

chore(deps): update actions/checkout action to v4 #47

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #47

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [
riscv32imac-unknown-none-elf,
riscv64imac-unknown-none-elf,
aarch64-unknown-none,
x86_64-unknown-none,
]
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt, clippy
target: ${{ matrix.target }}
- name: Check format
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
- name: Test
uses: actions-rs/cargo@v1
with:
command: test