GitHub Actions: Don't run test suite if basic linters fails (#60197)

This commit is contained in:
Franck Nijhof 2021-11-23 11:21:55 +01:00 committed by GitHub
parent 4aae088512
commit 83aff48db9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 1 deletions

View File

@ -653,7 +653,20 @@ jobs:
pytest:
runs-on: ubuntu-latest
needs: prepare-tests
needs:
- gen-requirements-all
- hassfest
- lint-bandit
- lint-black
- lint-codespell
- lint-dockerfile
- lint-executable-shebangs
- lint-isort
- lint-json
- lint-pyupgrade
- lint-yaml
- mypy
- prepare-tests
strategy:
fail-fast: false
matrix: