summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2021-10-08 19:40:40 -0400
committerJeff Forcier <jeff@bitprophet.org>2021-10-08 20:40:08 -0400
commit6e31c19e173dd842d5dad1566d01ceff488de6e1 (patch)
treea436d5e7b0ea7065b0a62c90a4c6b8760969ae51 /.circleci
parent5189a4f2029b186f022e84b71c42ba0e8d995cb0 (diff)
downloadparamiko-6e31c19e173dd842d5dad1566d01ceff488de6e1.tar.gz
Use new orb docs job
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml9
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)"]