From 6e31c19e173dd842d5dad1566d01ceff488de6e1 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Fri, 8 Oct 2021 19:40:40 -0400 Subject: Use new orb docs job --- .circleci/config.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to '.circleci') 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)"] -- cgit v1.2.1