Skip to content

build(deps): bump bytemuck from 1.14.1 to 1.15.0 #221

build(deps): bump bytemuck from 1.14.1 to 1.15.0

build(deps): bump bytemuck from 1.14.1 to 1.15.0 #221

Workflow file for this run

on:
push:
branches:
- main
pull_request:
# schedule:
# - cron: "13 3 * * *"
name: CI
jobs:
build:
name: Cargo Build
runs-on: ubuntu-latest
env: {"RUSTFLAGS": "-D warnings"}
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
target: thumbv7em-none-eabi
- run: cargo build
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
components: clippy
# not using clippy-check due to this issue:
# https://github.com/actions-rs/clippy-check/issues/2
- run: cargo clippy -- --deny warnings