Skip to content

Remove asm toolchain #1094

Remove asm toolchain

Remove asm toolchain #1094

Workflow file for this run

on:
pull_request:
merge_group:
workflow_dispatch:
name: Clippy check
jobs:
clippy:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental || false }}
strategy:
matrix:
# All generated code should be running on stable now
rust: [stable]
target:
[
"thumbv8m.main-none-eabihf",
"thumbv8m.main-none-eabi",
"thumbv8m.base-none-eabi",
"thumbv7em-none-eabihf",
"thumbv7em-none-eabi",
"thumbv7m-none-eabi",
"thumbv6m-none-eabi",
]
include:
# # Test MSRV
# - rust: 1.85.0
# Test nightly but don't fail
- rust: nightly
experimental: true
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Run clippy
run: cargo clippy --all --features cortex-m/critical-section-single-core --target ${{matrix.target}} -- --deny warnings