Skip to content

Bump defmt from 0.3.5 to 0.3.6 #43

Bump defmt from 0.3.5 to 0.3.6

Bump defmt from 0.3.5 to 0.3.6 #43

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: thumbv7em-none-eabihf
components: rustfmt clippy
- name: Install flip-link
run: cargo install flip-link
- name: build
run: cargo build
- name: check
run: cargo check
# no tests available for now => no test step as it'd fail otherwise
- name: check formatting
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy
- name: audit
run: cargo audit