File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11---
22# Add additional stages in the order of execution here, and then under the job:include: key
3- # dist: "focal" # Ubuntu 20.04
3+ dist : " focal" # Ubuntu 20.04
44stages :
5- - " lint "
6- - " build "
7- - " test "
5+ - name : " Lint "
6+ - name : " Build "
7+ - name : " Unit Test "
88
99language : " python"
1010python :
1111 - " 3.6"
1212 - " 3.7"
13- - " 3.8"
14- - " 3.9"
13+ # - "3.8"
14+ # - "3.9"
1515
1616services :
1717 - " docker"
2323
2424jobs :
2525 include :
26- - stage : " lint "
26+ - stage : " Lint "
2727 env :
2828 - " INVOKE_LOCAL=True"
2929 before_script :
@@ -38,15 +38,15 @@ jobs:
3838 - " invoke pylint"
3939 python : " 3.7"
4040
41- - stage : " build "
41+ - stage : " Build "
4242 before_script :
4343 - " pip install invoke poetry toml"
4444 script :
4545 - " invoke build-image --nocache"
4646 - " poetry build"
4747 python : " 3.7"
4848
49- - stage : " test "
49+ - stage : " Unit Test "
5050 before_script :
5151 - " pip install invoke poetry toml"
5252 - " poetry install"
You can’t perform that action at this time.
0 commit comments