Skip to content

Bump rtic-sync from 1.1.1 to 1.2.0 #19

Bump rtic-sync from 1.1.1 to 1.2.0

Bump rtic-sync from 1.1.1 to 1.2.0 #19

Workflow file for this run

name: CI
on:
- push
- pull_request
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
targets: thumbv6m-none-eabi
components: clippy
- name: Clippy
run: cargo clippy --all-features -- -D warnings
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
targets: thumbv6m-none-eabi
components: rustfmt
- name: Rustfmt
run: cargo fmt --all -- --check