Skip to content

Commit

Permalink
Merge pull request #650 from googlefonts/disable-clippy
Browse files Browse the repository at this point in the history
[ci] Disable clippy
  • Loading branch information
anthrotype authored Oct 6, 2023
2 parents e820e89 + 4f2573b commit 2e39fe2
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,20 @@ jobs:
- name: check no println! or eprintln! statements
run: resources/scripts/check_no_println.sh

clippy-lint:
name: Clippy lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install stable toolchain
uses: dtolnay/rust-toolchain@stable

- name: cargo clippy --all-features
run: cargo clippy --all-features --all-targets -- -D warnings

- name: cargo clippy --no-default-features
run: cargo clippy --all-targets --no-default-features -- -D warnings
# disabled temporarily pending fixing a crash in clippy
#clippy-lint:
#name: Clippy lints
#runs-on: ubuntu-latest
#steps:
#- uses: actions/checkout@v3
#- name: install stable toolchain
#uses: dtolnay/rust-toolchain@stable

#- name: cargo clippy --all-features
#run: cargo clippy --all-features --all-targets -- -D warnings

#- name: cargo clippy --no-default-features
#run: cargo clippy --all-targets --no-default-features -- -D warnings

test-stable:
name: cargo test stable
Expand Down

0 comments on commit 2e39fe2

Please sign in to comment.