Skip to content

Commit 3198ba8

Browse files
author
Rami Chowdhury
committed
Change build-and-test to build
1 parent a8c037e commit 3198ba8

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ version: 2.1
33
jobs:
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:
5049
workflows:
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]+)*/

0 commit comments

Comments
 (0)