Skip to content

chore(deps): bump google-github-actions/release-please-action from 3 to 4 #19

chore(deps): bump google-github-actions/release-please-action from 3 to 4

chore(deps): bump google-github-actions/release-please-action from 3 to 4 #19

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:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
name: Installing Rust Toolchain
with:
profile: default
toolchain: stable
override: true
components: rustfmt, clippy
target: thumbv7em-none-eabi
- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.1
- uses: actions-rs/cargo@v1
name: Cargo fmt
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
name: Cargo clippy
with:
command: clippy
args: --release -- -D warnings
- uses: actions-rs/cargo@v1
name: Cargo build
with:
command: build
args: --release
- uses: actions-rs/cargo@v1
name: Cargo build examples
with:
command: build
args: --examples --target thumbv7em-none-eabi