From e6b5fcb34a741cd038cfe5d3a836b00f1704c55d Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Fri, 13 Dec 2024 09:30:20 -0500 Subject: [PATCH] chore(ci): Remove redundant workflow --- .github/workflows/contrib.yml | 38 ----------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/contrib.yml diff --git a/.github/workflows/contrib.yml b/.github/workflows/contrib.yml deleted file mode 100644 index 266ea29a3..000000000 --- a/.github/workflows/contrib.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Contribution checks - -on: - push: - branches: - - master - pull_request: - branches: - - master - -defaults: - run: - shell: bash - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -permissions: - contents: read - -jobs: - style: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - run: pipx run ruff check . - - run: pipx run ruff format --diff . - - codespell: - name: Check for spelling errors - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Codespell - uses: codespell-project/actions-codespell@v2