From 25ef1dc6279238fc577ab01fea1303d34de6665d Mon Sep 17 00:00:00 2001 From: etienne-hd Date: Wed, 29 Apr 2026 23:10:23 +0200 Subject: [PATCH] ci(github): add ruff lint workflow --- .github/workflows/lint.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..5c56c02 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,23 @@ +name: Lint + +on: + push: + pull_request: + +jobs: + ruff: + name: Ruff + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Run Ruff lint + uses: astral-sh/ruff-action@v3 + with: + args: check + + - name: Run Ruff format check + uses: astral-sh/ruff-action@v3 + with: + args: format --check \ No newline at end of file