Skip to content

ci: run style check with expected Rust toolchain #1000

ci: run style check with expected Rust toolchain

ci: run style check with expected Rust toolchain #1000

Workflow file for this run

# Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
#
# SPDX-License-Identifier: BSD-2-Clause
# Actions to run on pull requests
name: PR
on: [pull_request, workflow_dispatch]
jobs:
pr-checks:
name: Checks
uses: seL4/ci-actions/.github/workflows/pr.yml@master
clippy_check:
runs-on: [self-hosted, macos, ARM64]
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run Clippy
run: nix develop --ignore-environment -c bash -c "cd tool/microkit && cargo-clippy --all-targets --all-features"
rustfmt_check:
runs-on: [self-hosted, macos, ARM64]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run rustfmt
run: nix develop --ignore-environment -c bash -c "cd tool/microkit && cargo-fmt --check"