Skip to content

Bump regex from 1.11.1 to 1.11.2 in /rust #770

Bump regex from 1.11.1 to 1.11.2 in /rust

Bump regex from 1.11.1 to 1.11.2 in /rust #770

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"
RUSTC_WRAPPER: "sccache"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
toolchain: 1.88
- uses: mozilla-actions/sccache-action@v0.0.9
- 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