From 656ad4b5f2a83f6f2d44a36de37837a4fadbff39 Mon Sep 17 00:00:00 2001 From: Daz DeBoer Date: Wed, 15 Sep 2021 17:57:43 -0600 Subject: [PATCH] Move continue-on-error into the step definition Hopefully this will allow GitHub to ignore the failure. --- .github/workflows/failure-cases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/failure-cases.yml b/.github/workflows/failure-cases.yml index 9565917..831fc95 100644 --- a/.github/workflows/failure-cases.yml +++ b/.github/workflows/failure-cases.yml @@ -13,25 +13,25 @@ env: jobs: wrapper-missing: - continue-on-error: true runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v2 - name: Test wrapper missing uses: ./ + continue-on-error: true with: build-root-directory: __tests__/samples/no-wrapper arguments: help bad-configuration: - continue-on-error: true runs-on: ubuntu-latest steps: - name: Checkout sources uses: actions/checkout@v2 - name: Test bad config value uses: ./ + continue-on-error: true with: build-root-directory: __tests__/samples/no-wrapper arguments: help