From 8f838cbbab14fae209e6905a98e1e7a9369af600 Mon Sep 17 00:00:00 2001 From: mcpdumle Date: Sat, 20 Sep 2025 17:21:52 -0400 Subject: [PATCH] chore(ci): add basic Ruff lint workflow --- .github/workflows/ci-lint.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci-lint.yml 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 .