diff --git a/.github/workflows/contrib.yml b/.github/workflows/contrib.yml deleted file mode 100644 index 266ea29a..00000000 --- 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