Added the possibility to configure PWM as open drain output #242
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
on: | |
pull_request: | |
name: Continuous integration | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
feature: | |
- stm32g431 | |
- stm32g441 | |
- stm32g471 | |
- stm32g473 | |
- stm32g474 | |
- stm32g483 | |
- stm32g484 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
target: thumbv7em-none-eabihf | |
override: true | |
- name: Regular build | |
run: cargo check --features ${{ matrix.feature }} |