diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bee8a64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e3076c7..82bc47c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,17 @@ stages: - - syntaxcheck + - build + - test test: - stage: syntaxcheck + stage: build tags: - python3 script: - - python3 -i panxy.py + - python3 -m py_compile panxy.py + +test: + stage: test + tags: + - python3 + script: + - python3 panxy.py