Skip to content

fix small API regression - minor fixes #122

fix small API regression - minor fixes

fix small API regression - minor fixes #122

Workflow file for this run

name: clippy
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
clippy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Run sccache stat for check before
shell: bash
run: ${SCCACHE_PATH} --show-stats
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-09-01
- name: cargo clippy
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
run: |
rustup default nightly-2024-09-01
rustup component add clippy
cargo clippy --all-targets --all-features
- name: Run sccache stat for check after
shell: bash
run: ${SCCACHE_PATH} --show-stats