Do not use form due to naming issues on Windows #6
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
name: Check | |
on: [push, pull_request] | |
jobs: | |
check: | |
strategy: | |
matrix: | |
mcu: [bcm2835, bcm2837, bcm2711] | |
os: [ubuntu, windows] | |
rust-version: [1.65.0, 1.66.1, 1.67.1, 1.68.2, 1.69.0, 1.70.0, 1.71.1, 1.72.1, 1.73.0] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
run: rustup default ${{ matrix.rust-version }} | |
- name: Check crate | |
working-directory: crates/${{ matrix.mcu }}-lpa | |
run: | | |
cargo check | |
cargo check --all-features |