Skip to content

chore(cli): bump mentra to 0.5.0 #104

chore(cli): bump mentra to 0.5.0

chore(cli): bump mentra to 0.5.0 #104

Workflow file for this run

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
name: Clippy check
permissions:
contents: read
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (stable)
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Run Clippy
run: cargo clippy --workspace --all-targets --all-features