Update CI workflow to specify source directory for linting
All checks were successful
CI / lint-and-test (push) Successful in 16s

- Modified the CI configuration in `ci.yml` to change the linting command from checking the entire `src` directory to specifically targeting the `duty_teller` package and `tests`.
- This change enhances the accuracy of linting by focusing on relevant code areas, improving code quality checks during the CI process.
This commit is contained in:
2026-02-18 13:16:49 +03:00
parent 68c4f42a21
commit dbf91bb4ee

View File

@@ -28,7 +28,7 @@ jobs:
- name: Lint with Ruff
run: |
ruff check src tests
ruff check duty_teller tests
- name: Run tests
env: