Skip to content

Bump thiserror from 2.0.8 to 2.0.9 in /rust #148

Bump thiserror from 2.0.8 to 2.0.9 in /rust

Bump thiserror from 2.0.8 to 2.0.9 in /rust #148

Workflow file for this run

name: Rust Lint
on:
pull_request:
paths:
- 'rust/**'
- '.github/workflows/rust-lint.yaml'
env:
SCCACHE_GHA_ENABLED: "true"
SSCACHE_CACHE_SIZE: "2G"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
- uses: mozilla-actions/sccache-action@v0.0.7
- name: Check formatting
working-directory: ./rust
run: cargo fmt --all -- --check
- name: Clippy
if: ${{ always() }}
working-directory: ./rust
run: cargo clippy --no-deps --all-targets -- -W clippy::pedantic -D warnings