Skip to content

Commit

Permalink
remove --locked
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Jul 29, 2024
1 parent 3a1766e commit 0cebc17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Clippy Lint
run: RUSTFLAGS="-D warnings" cargo clippy --locked --tests
run: RUSTFLAGS="-D warnings" cargo clippy --tests

clippy-native-cpu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Clippy Lint
run: RUSTFLAGS="-D warnings -C target-cpu=native" cargo clippy --locked --tests
run: RUSTFLAGS="-D warnings -C target-cpu=native" cargo clippy --tests

clippy-all-features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Clippy Lint
run: RUSTFLAGS="-D warnings" cargo clippy --all-features --locked --tests
run: RUSTFLAGS="-D warnings" cargo clippy --all-features --tests

tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0cebc17

Please sign in to comment.