From 8eaf49e3171a4a1a4056806626d15ed5e393c7fe Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 26 Dec 2025 14:39:07 +0100 Subject: [PATCH] Remove cargo-sort CI job It isn't very important and fixing it here will result in more merge conflicts. --- .github/workflows/CI.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f63262aa..52623733 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -209,24 +209,6 @@ jobs: --manifest-path ./examples/simple-router-wasm/Cargo.toml --target wasm32-unknown-unknown - dependencies-are-sorted: - runs-on: ubuntu-24.04 - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@beta - - uses: Swatinem/rust-cache@v2 - with: - save-if: ${{ github.ref == 'refs/heads/main' }} - - name: Install cargo-sort - run: | - cargo install cargo-sort - # Work around cargo-sort not honoring workspace.exclude - - name: Remove non-crate folder - run: rm -rf examples/async-graphql - - name: Check dependency tables - run: | - cargo sort --workspace --grouped --check - typos: name: Spell Check with Typos runs-on: ubuntu-24.04