Browse Source

Add workflows section to CircleCI config.yml

lon0
Kevin Hallock 6 years ago
parent
commit
3ee6fa0ad0
  1. 8
      .circleci/config.yml

8
.circleci/config.yml

@ -4,7 +4,7 @@
# #
version: 2 version: 2
jobs: jobs:
pep8: lint:
docker: docker:
- image: circleci/python:3.6.1 - image: circleci/python:3.6.1
@ -88,3 +88,9 @@ jobs:
- store_artifacts: - store_artifacts:
path: test-reports path: test-reports
destination: test-reports destination: test-reports
workflows:
version: 2
build_and_lint:
jobs:
- build
- lint

Loading…
Cancel
Save