diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2021-10-08 19:40:40 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2021-10-08 20:40:08 -0400 |
commit | 6e31c19e173dd842d5dad1566d01ceff488de6e1 (patch) | |
tree | a436d5e7b0ea7065b0a62c90a4c6b8760969ae51 | |
parent | 5189a4f2029b186f022e84b71c42ba0e8d995cb0 (diff) |
Use new orb docs job
-rw-r--r-- | .circleci/config.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index bb047bb6..d478ba97 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -46,6 +46,7 @@ jobs: workflows: main: jobs: + # The basics - orb/lint: name: Lint - orb/format: @@ -76,11 +77,15 @@ workflows: requires: - "Test 3.6 (w/ coverage, latest crypto)" - "Release test" + # Test other interpreters if main passed - orb/test: name: Test << matrix.version >> - # It's not worth testing on other interpreters if the baseline one - # failed. Can't run >4 jobs at a time anyhow! requires: ["Test 3.6 (w/ coverage, latest crypto)"] matrix: parameters: version: ["3.7", "3.8", "3.9"] + # Test doc building if main test suite passed (no real reason to spend + # all those credits if the main tests would also fail...) + - orb/docs: + name: "Docs" + requires: ["Test 3.6 (w/ coverage, latest crypto)"] |