added .gitignore, second stage to ci
parent
801f6323e2
commit
0c5c77d881
@ -0,0 +1 @@
|
|||||||
|
__pycache__
|
@ -1,9 +1,17 @@
|
|||||||
stages:
|
stages:
|
||||||
- syntaxcheck
|
- build
|
||||||
|
- test
|
||||||
|
|
||||||
test:
|
test:
|
||||||
stage: syntaxcheck
|
stage: build
|
||||||
tags:
|
tags:
|
||||||
- python3
|
- python3
|
||||||
script:
|
script:
|
||||||
- python3 -i panxy.py
|
- python3 -m py_compile panxy.py
|
||||||
|
|
||||||
|
test:
|
||||||
|
stage: test
|
||||||
|
tags:
|
||||||
|
- python3
|
||||||
|
script:
|
||||||
|
- python3 panxy.py
|
||||||
|
Loading…
Reference in New Issue