From 8808add708ce8ce162e095b2f20b9c85cedce610 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 3 Nov 2020 08:51:45 +0000 Subject: [PATCH] Try allow failure Github job --- .github/workflows/sample_build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sample_build.yml b/.github/workflows/sample_build.yml index 4ff80b52..906d140a 100644 --- a/.github/workflows/sample_build.yml +++ b/.github/workflows/sample_build.yml @@ -6,9 +6,14 @@ jobs: build_wheels: name: Build wheels [${{ matrix.result }}] runs-on: ubuntu-18.04 + continue-on-error: ${{ matrix.allow_fail }} strategy: + fail_fast: false matrix: - result: [success, failure] + include: + - result: success + - result: failure + allow_fail: true steps: - uses: actions/checkout@v2