Merge pull request #6552 from blueyed/ci-linting

ci: GHA: separate jobs for linting, docs, doctesting
This commit is contained in:
Daniel Hahler 2020-01-24 13:36:59 +01:00 committed by GitHub
commit 0d4f479aa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 1 deletions

View File

@ -43,6 +43,8 @@ jobs:
"macos-py38",
"linting",
"docs",
"doctesting",
]
include:
@ -112,7 +114,17 @@ jobs:
- name: "linting"
python: "3.7"
os: ubuntu-latest
tox_env: "linting,docs,doctesting"
tox_env: "linting"
skip_coverage: true
- name: "docs"
python: "3.7"
os: ubuntu-latest
tox_env: "docs"
skip_coverage: true
- name: "doctesting"
python: "3.7"
os: ubuntu-latest
tox_env: "doctesting"
steps:
- uses: actions/checkout@v1