Skip to content

release 0.17.2

release 0.17.2 #161

Workflow file for this run

name: CI
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: thumbv7em-none-eabihf
- run: cargo build --release --target=thumbv7em-none-eabihf
- run: cargo build --features=defmt --release --target=thumbv7em-none-eabihf
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: thumbv7em-none-eabihf
- run: cargo test --verbose --all