Fix private member assess in pin::Pin::into_mode<>()
#178
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
| name: Formatting | |
| on: [push, pull_request] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| MSRV: 1.63.0 | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Specify toolchain | |
| run: rustup override set $MSRV | |
| - name: Install Rust (thumbv7em) | |
| run: rustup target add thumbv7em-none-eabihf | |
| - name: Install Rustfmt | |
| run: rustup component add rustfmt | |
| - run: | | |
| set -xeu | |
| cargo fmt --package atsamx7x-hal -- --check | |
| for manifest in $(find ./boards -type f -iname Cargo.toml); do | |
| pushd $(dirname $manifest) | |
| cargo fmt -- --check | |
| popd | |
| done |