Skip to content

Implement PortDriverPullUp and PortDriverPolarity for Mcp23x17 #82

Implement PortDriverPullUp and PortDriverPolarity for Mcp23x17

Implement PortDriverPullUp and PortDriverPolarity for Mcp23x17 #82

Workflow file for this run

name: CI
on:
push:
branches:
- main
- wip
pull_request:
jobs:
test:
name: Compile and Test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all --check