Newer
Older
image: python:latest
stage: quality
script:
- python --version # Debug
- python -m venv venv --upgrade-deps || python -m venv venv
- source venv/bin/activate
only:
changes:
- src/**/*.py
- tests/**/*.py
- .gitlab-ci.yml
- pyproject.toml