From 72e9ffff50b7b367913dd9b8828e850e0aaff6ad Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Fri, 10 Nov 2023 19:11:12 +0000 Subject: [PATCH] ci: remove duplicate lint workflow --- .github/workflows/lint.yml | 24 ------------------------ 1 file changed, 24 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 5f3a2cd8..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: lint - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -env: - CARGO_TERM_COLOR: always - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - name: Checkout Crate - uses: actions/checkout@v3 - - name: Set Toolchain - # https://github.com/dtolnay/rust-toolchain - uses: dtolnay/rust-toolchain@stable - - name: typos-action - uses: crate-ci/typos@v1.0.4 - - name: Run fmt - run: cargo fmt --all --check