|
@@ -40,6 +40,7 @@ env:
|
|
jobs:
|
|
jobs:
|
|
lint:
|
|
lint:
|
|
name: Lint
|
|
name: Lint
|
|
|
|
+ timeout-minutes: 15
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/checkout@v2
|
|
@@ -55,6 +56,7 @@ jobs:
|
|
python -m tox -vv -e lint
|
|
python -m tox -vv -e lint
|
|
pytest:
|
|
pytest:
|
|
name: Pytest
|
|
name: Pytest
|
|
|
|
+ timeout-minutes: 15
|
|
needs: lint
|
|
needs: lint
|
|
runs-on: ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
strategy:
|
|
@@ -76,6 +78,7 @@ jobs:
|
|
python -m tox -vv -e code-test
|
|
python -m tox -vv -e code-test
|
|
doc-build:
|
|
doc-build:
|
|
name: Docs Build Test
|
|
name: Docs Build Test
|
|
|
|
+ timeout-minutes: 15
|
|
needs: lint
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
steps:
|
|
@@ -92,6 +95,7 @@ jobs:
|
|
python -m tox -vv -e doc-build-test
|
|
python -m tox -vv -e doc-build-test
|
|
verify-local-ci:
|
|
verify-local-ci:
|
|
name: Local CI
|
|
name: Local CI
|
|
|
|
+ timeout-minutes: 15
|
|
needs:
|
|
needs:
|
|
- pytest
|
|
- pytest
|
|
- doc-build
|
|
- doc-build
|