Skip to content

Commit

Permalink
CI: build should come before clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
cyqsimon committed Aug 25, 2023
1 parent ff044d4 commit 552d982
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ jobs:
- name: Check formatting
run: cargo fmt --all -- --check

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

- name: Build
run: cargo build --verbose

Expand All @@ -51,6 +48,9 @@ jobs:
done
set -x
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings

- name: Run tests
run: cargo test --verbose

Expand Down

0 comments on commit 552d982

Please sign in to comment.