feat: add linter to ci workflow
Some checks failed
Lint, Build, Scan and Publish Docker Image / lint (push) Failing after 21s
Lint, Build, Scan and Publish Docker Image / build-and-push (push) Successful in 1m13s

This commit is contained in:
2026-01-18 12:43:05 +01:00
parent fb54130928
commit a7baf35772

View File

@@ -14,11 +14,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruff
run: pip install ruff
- name: Run Ruff (Lint & Format Check)
- name: Install and run Ruff (Lint & Format Check)
run: |
python3 -m venv venv
source venv/bin/activate
ruff check .
ruff format --check .