Add implementation of new Instance type so that I2c works (#157) #356
This file contains hidden or 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
on: | |
push: | |
branches: [ staging, trying, main ] | |
pull_request: | |
name: Clippy check | |
jobs: | |
clippy_check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
feature: | |
- stm32g030 | |
- stm32g031 | |
- stm32g041 | |
- stm32g070 | |
- stm32g071 | |
- stm32g081 | |
- stm32g0b1 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: rustup component add clippy | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
target: thumbv6m-none-eabi | |
override: true | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --target thumbv6m-none-eabi --features ${{ matrix.feature }} |