From f1ec7c64959a3cab7a9205e0da801bb5d012ab7f Mon Sep 17 00:00:00 2001 From: lencx Date: Sun, 22 Jan 2023 20:17:51 +0800 Subject: [PATCH] chore: remove lint --- .github/workflows/lint.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 28d01d5..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Lint CI -on: [push, pull_request] - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - name: Setup | Checkout - uses: actions/checkout@v3 - - - name: Setup | Ubuntu dependencies - run: sudo apt install libasound2-dev libudev-dev pkg-config - - - name: Setup | Toolchain (clippy, rustfmt) - uses: dtolnay/rust-toolchain@stable - with: - components: clippy, rustfmt - - - uses: Swatinem/rust-cache@v2 - - - name: Lint | Clippy - - uses: actions-rs/cargo@v1 - with: - command: clippy - args: --all-targets --all-features -- -D warnings - - - name: Lint | Rustfmt - - uses: actions-rs/cargo@v1 - with: - command: fmt - args: --all -- --check