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
3
3
jobs :
4
4
# Building and testing the project
5
5
# Useful when a PR is open, for example
6
- build-and-test :
6
+ build :
7
7
docker :
8
8
- image : circleci/python:3.7.3 # includes `poetry`!
9
- # The steps for our build-and-test
10
9
steps :
11
10
- checkout
12
11
@@ -50,15 +49,15 @@ jobs:
50
49
workflows :
51
50
version : 2.1
52
51
53
- build-and-test- workflow :
52
+ build-workflow :
54
53
jobs :
55
- - build-and-test
54
+ - build
56
55
57
56
# The deployment workflow publishes the package, and is only run on a Git tag matching a
58
57
# version regex
59
58
deployment-workflow :
60
59
jobs :
61
- - build-and-test :
60
+ - build :
62
61
filters :
63
62
tags :
64
63
only : /v[0-9]+(\.[0-9]+)*/
@@ -67,7 +66,7 @@ workflows:
67
66
68
67
- deployment :
69
68
requires :
70
- - build-and-test
69
+ - build
71
70
filters :
72
71
tags :
73
72
only : /v[0-9]+(\.[0-9]+)*/
You can’t perform that action at this time.
0 commit comments