Update crates and examples #36
Workflow file for this run
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: Rust | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Format | |
run: cargo fmt --check | |
- name: Clippy std | |
run: cargo clippy --features std --tests -- -D warnings | |
- name: Clippy embassy | |
run: cargo clippy --features embassy -- -D warnings | |
- name: Clippy embedded_hal | |
run: | | |
cargo clippy --features embedded_hal -- -D warnings | |
cargo clippy --features embedded_hal_old -- -D warnings | |
- name: Clippy default | |
run: cargo clippy --no-default-features -- -D warnings | |
- name: Install dependencies | |
run: rustup target add thumbv7m-none-eabi | |
- name: Clippy example stm32 | |
working-directory: examples/stm32 | |
run: cargo clippy -- -D warnings | |
- name: Clippy example stm32-embassy | |
working-directory: examples/stm32-embassy | |
run: cargo clippy -- -D warnings | |
- name: Tests | |
run: cargo test tests --features std |