Compare commits

..

No commits in common. "master" and "subscription_approach" have entirely different histories.

View File

@ -2,6 +2,16 @@ stages:
- check
- release
build:
stage: check
image: registry.hottis.de/dockerized/base-build-env:1.5.2-bullseye
tags:
- bash
- linux
- docker
script:
- for I in src/*.py; do python -m py_compile $I; done
- for I in src/*.py; do python -m pycodestyle --max-line-length=120 $I; done
check:
stage: check