Skip to content

deps: bump Swatinem/rust-cache from 2.7.3 to 2.7.5 in the github-actions group #25

deps: bump Swatinem/rust-cache from 2.7.3 to 2.7.5 in the github-actions group

deps: bump Swatinem/rust-cache from 2.7.3 to 2.7.5 in the github-actions group #25

Workflow file for this run

name: Branches
on:
pull_request:
types: [opened, reopened, synchronize]
branches-ignore:
- "release-please-*"
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
folder: [".", "examples/stm32l433"]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
targets: thumbv7em-none-eabi
- uses: Swatinem/rust-cache@v2.7.5
- run: cargo fmt --all -- --check
working-directory: ${{ matrix.folder }}
- run: cargo clippy --release -- -D warnings
working-directory: ${{ matrix.folder }}
- run: cargo build --release
working-directory: ${{ matrix.folder }}