From 1cdd3b55677054ba0e237893435fdc05006b9a3e Mon Sep 17 00:00:00 2001 From: c2r0b <3254315+c2r0b@users.noreply.github.com> Date: Sat, 24 Aug 2024 23:01:50 +0200 Subject: [PATCH] Delete .github/workflows/lint.yml --- .github/workflows/lint.yml | 35 ----------------------------------- 1 file changed, 35 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 25780fb..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Clippy - -on: - push: - branches: - - main - pull_request: - branches: - - main - - dev - -jobs: - clippy: - runs-on: ubuntu-latest - strategy: - fail-fast: false - - steps: - - uses: actions/checkout@v2 - - name: install webkit2gtk - run: | - sudo apt-get update - sudo apt-get install -y webkit2gtk-4.0 - - name: Install clippy with stable toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - components: clippy - - uses: actions-rs/clippy-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --manifest-path=Cargo.toml --all-targets --all-features -- -D warnings - name: clippy