add ci script

This commit is contained in:
Wolfgang Hottgenroth
2022-02-22 14:46:18 +01:00
parent b31a2ec409
commit 18d9c511e7

13
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,13 @@
stages:
- check
build:
stage: check
image: registry.hottis.de/dockerized/base-build-env:1.5.2-bullseye
tags:
- hottis
- 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