From d40ee92b5271e4279cac103f4ce7c42a547b0bd7 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 10 Apr 2026 08:15:37 -0700 Subject: [PATCH] Revert "ci(style): add typos-cli to CI flow (#2468)" This reverts commit d0f7d9890fcf451ed07c5ea7cd550f5023cb2781. --- .github/workflows/main.yml | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 276391fb7a..8b527bb944 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -364,14 +364,6 @@ jobs: - run: rustup component add clippy - run: cargo clippy --workspace --all-targets --exclude dl --exclude component - typos: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - - uses: cargo-bins/cargo-binstall@v1.17.9 - - run: cargo binstall typos-cli@1.44.0 --no-confirm - - run: typos - verify-publish: if: github.repository_owner == 'bytecodealliance' runs-on: ubuntu-latest @@ -391,21 +383,20 @@ jobs: name: Record the result of testing and building steps runs-on: ubuntu-latest needs: - - build + - test + - testdl + - wasm + - rustfmt + - fuzz - check - - clippy - doc - - fuzz - - generated_files_up_to_date - - rustfmt - - test - - test-prefer-btree-collections + - build + - verify-publish - test_capi - test_extra_features - - testdl - - typos - - verify-publish - - wasm + - test-prefer-btree-collections + - clippy + - generated_files_up_to_date if: always() steps: @@ -435,3 +426,5 @@ jobs: submodules: true fetch-depth: 0 - uses: ./.github/actions/publish-release + with: + cargo_token: ${{ secrets.CARGO_REGISTRY_TOKEN }}