We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5df5ebf commit e4b4c7eCopy full SHA for e4b4c7e
.circleci/config.yml
@@ -1,11 +1,12 @@
1
version: 2
2
-build:
3
- working_directory: ~/circleci-demo-python
4
- docker:
5
- - image: circleci/python:3.6.4 # primary container for the build job
6
- steps:
7
- - checkout # checkout source code to working directory
8
- - run:
9
- command: | # use pipenv to install dependencies
10
- sudo pip install pipenv
11
- pipenv install
+jobs:
+ build:
+ working_directory: ~/circleci-demo-python
+ docker:
+ - image: circleci/python:3.6.4 # primary container for the build job
+ steps:
+ - checkout # checkout source code to working directory
+ - run:
+ command: | # use pipenv to install dependencies
+ sudo pip install pipenv
12
+ pipenv install
0 commit comments