diff --git a/.gitea/workflows/ci-cd.yml b/.gitea/workflows/ci-cd.yml index bb8cdae..84b8a2a 100644 --- a/.gitea/workflows/ci-cd.yml +++ b/.gitea/workflows/ci-cd.yml @@ -40,13 +40,13 @@ jobs: run: | export PATH="$HOME/.local/bin:$PATH" source .venv/bin/activate - ruff check . + ruff check src/ - name: Run Ruff formatting check run: | export PATH="$HOME/.local/bin:$PATH" source .venv/bin/activate - ruff format . --check + ruff format src/ --check test: name: Run Tests