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

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