From 79966e3d6278293c2abb4e58c4b8fde8b02039be Mon Sep 17 00:00:00 2001 From: EmperorBale Date: Thu, 18 May 2023 22:29:58 -0700 Subject: [PATCH] ci: Remove lint check --- .github/workflows/test_rust.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/test_rust.yml b/.github/workflows/test_rust.yml index c31e0837e..d10f190b8 100644 --- a/.github/workflows/test_rust.yml +++ b/.github/workflows/test_rust.yml @@ -66,10 +66,6 @@ jobs: - name: Check formatting run: cargo fmt --all -- --check - - name: Lint AS3 playerglobals - if: runner.os == 'Linux' && matrix.rust_version == 'stable' - run: cargo run -p build_playerglobal -- lint - - name: Check clippy # Don't fail the build for clippy on nightly, since we get a lot of false-positives run: cargo clippy --all --all-features --tests ${{ (matrix.rust_version != 'nightly' && '-- -D warnings') || '' }}