diff --git a/.github/workflows/python-lint.yaml b/.github/workflows/python-lint.yaml new file mode 100644 index 0000000..f3e939f --- /dev/null +++ b/.github/workflows/python-lint.yaml @@ -0,0 +1,15 @@ +name: "python lint" +on: + - pull_request + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install ruff + run: pip install ruff==0.6.9 + + - name: Lint python files + run: ruff check .