Skip to content

Search a 2d matrix ii #329

Search a 2d matrix ii

Search a 2d matrix ii #329

Workflow file for this run

on: [pull_request]
name: Rust Clippy Check
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
- name: Setup Clippy
run: rustup component add clippy
- name: Clippy Check in Rust LeetCode
run: cargo clippy --all-targets --all-features -- -D warnings
working-directory: ./leetcode-rs
- name: Clippy Check in Rust Runtime
run: cargo clippy --all-targets --all-features -- -D warnings
working-directory: ./runtime-rs