File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,9 @@ version: 2.1
33jobs :
44 # Building and testing the project
55 # Useful when a PR is open, for example
6- build-and-test :
6+ build :
77 docker :
88 - image : circleci/python:3.7.3 # includes `poetry`!
9- # The steps for our build-and-test
109 steps :
1110 - checkout
1211
@@ -50,15 +49,15 @@ jobs:
5049workflows :
5150 version : 2.1
5251
53- build-and-test- workflow :
52+ build-workflow :
5453 jobs :
55- - build-and-test
54+ - build
5655
5756 # The deployment workflow publishes the package, and is only run on a Git tag matching a
5857 # version regex
5958 deployment-workflow :
6059 jobs :
61- - build-and-test :
60+ - build :
6261 filters :
6362 tags :
6463 only : /v[0-9]+(\.[0-9]+)*/
@@ -67,7 +66,7 @@ workflows:
6766
6867 - deployment :
6968 requires :
70- - build-and-test
69+ - build
7170 filters :
7271 tags :
7372 only : /v[0-9]+(\.[0-9]+)*/
You can’t perform that action at this time.
0 commit comments