add .gitlab-ci: run format.sh --check

Closes #10

Signed-off-by: InsanePrawn <insane.prawny@gmail.com>
This commit is contained in:
InsanePrawn 2021-08-09 00:29:53 +02:00
parent 0f881800ac
commit f8edeaf61f

11
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,11 @@
stages:
- check
- build
format:
stage: check
image: python
before_script:
- pip install yapf autoflake
script:
- ./format.sh --check