From d197e14425ef75bb7b51b1453aa3487e9c53d8cd Mon Sep 17 00:00:00 2001 From: DARKZOUL5 Date: Wed, 18 Mar 2026 18:49:19 +0200 Subject: [PATCH] Add linting workflow for Python code using Ruff --- .github/workflows/lint_python.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/lint_python.yml diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml new file mode 100644 index 0000000..28543bd --- /dev/null +++ b/.github/workflows/lint_python.yml @@ -0,0 +1,18 @@ +name: Lint Python code + +on: + push: + pull_request: + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Install Ruff + run: pip install ruff + + - name: Run linter + run: ruff check . \ No newline at end of file