Fix readme to stop the spread of lies #37
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: CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
components: clippy, rustfmt, llvm-tools-preview | |
targets: thumbv8m.main-none-eabihf | |
- run: cargo fmt -- --check | |
- run: cargo clippy --features nrf9160 --target thumbv8m.main-none-eabihf | |
- run: cargo clippy --features nrf9151 --target thumbv8m.main-none-eabihf |