From 8baf034d7831d290ac5d92a6e040a374f23f0747 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 26 Jul 2021 11:31:04 +1200 Subject: [PATCH] Don't fail fast on CI (#76) --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 914f1d1..d1b57af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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