diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml new file mode 100644 index 0000000..46f9589 --- /dev/null +++ b/.github/workflows/linters.yml @@ -0,0 +1,23 @@ +name: Linters + +on: + pull_request: + push: + branches: [main] + workflow_dispatch: + +jobs: + linters: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: 3.x + - name: Install requirements + run: pip install -r requirements.txt + - name: Run pre-commit + uses: pre-commit/action@v3.0.1 + - name: Run pre-commit.ci + uses: pre-commit-ci/lite-action@v1.1.0 + if: always()