remove cargo-sort check from CI

This commit is contained in:
Josh Junon 2024-01-17 15:35:17 +01:00 committed by GitButler
parent 942316861a
commit fe8c3e0615
2 changed files with 0 additions and 3 deletions

View File

@ -59,8 +59,6 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/init-env-rust
- run: cargo fmt --check
- run: cargo install cargo-sort
- run: cargo sort --check --workspace
test-rust:
needs: changes

View File

@ -6,7 +6,6 @@ set -o pipefail
function rust() {
cargo fmt --check
cargo sort -c -w
cargo clippy --all-targets --all-features --tests
cargo test
}