diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml new file mode 100644 index 00000000..1e8905d6 --- /dev/null +++ b/.github/workflows/ci-lint.yml @@ -0,0 +1,20 @@ +name: CI - Lint + +on: + pull_request: + branches: ["main"] + push: + branches: ["chore/add-ci-lint"] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + - name: Install ruff + run: pip install ruff==0.5.6 + - name: Lint + run: ruff check --output-format=github .