Don't fail fast on CI (#76)

This commit is contained in:
Jesse Hills 2021-07-26 11:31:04 +12:00 committed by GitHub
parent 7d36ed8ce5
commit 8baf034d78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@ jobs:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- id: flake8
@ -31,7 +32,7 @@ jobs:
id: python
with:
python-version: '3.7'
- name: Get pip cache dir
id: pip-cache
run: |
@ -55,7 +56,7 @@ jobs:
echo "::add-matcher::.github/workflows/matchers/isort.json"
echo "::add-matcher::.github/workflows/matchers/mypy.json"
echo "::add-matcher::.github/workflows/matchers/pytest.json"
- run: flake8 aioesphomeapi
if: ${{ matrix.id == 'flake8' }}
- run: pylint aioesphomeapi