Skip to content

Bump version to 0.1.23 #115

Bump version to 0.1.23

Bump version to 0.1.23 #115

Workflow file for this run

name: Clippy
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
container:
image: rust:latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
shared-key: "cmt-clippy"
cache-directories: |
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git
cache-on-failure: true
- name: Install Clippy
run: rustup component add clippy
- name: Run clippy
run: cargo clippy --all-targets -- -D warnings