From 0dbf58f7ff467c5af53be6653b8c10cb32d15111 Mon Sep 17 00:00:00 2001 From: Barafu Albino Cheetah Date: Tue, 13 Aug 2024 12:00:03 +0300 Subject: [PATCH] Comment out clippy task --- .github/workflows/rust.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 00cc069..72db996 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -6,8 +6,8 @@ env: # --cfg=web_sys_unstable_apis is required to enable the web_sys clipboard API which egui_web uses # https://rustwasm.github.io/wasm-bindgen/api/web_sys/struct.Clipboard.html # https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html - RUSTFLAGS: -D warnings --cfg=web_sys_unstable_apis - RUSTDOCFLAGS: -D warnings + # RUSTFLAGS: -D warnings --cfg=web_sys_unstable_apis + # RUSTDOCFLAGS: -D warnings jobs: check: @@ -73,21 +73,21 @@ jobs: command: fmt args: --all -- --check - clippy: - name: Clippy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - components: clippy - - uses: actions-rs/cargo@v1 - with: - command: clippy - args: -- -D warnings + # clippy: + # name: Clippy + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - uses: actions-rs/toolchain@v1 + # with: + # profile: minimal + # toolchain: stable + # override: true + # components: clippy + # - uses: actions-rs/cargo@v1 + # with: + # command: clippy + # args: -- -D warnings # trunk: # name: trunk