From e0c4a4d4a938c5b4d73aafec30cbf262a6536808 Mon Sep 17 00:00:00 2001 From: ionutboangiu Date: Fri, 14 Jul 2023 11:49:59 -0400 Subject: [PATCH] Make sure main job executes even if duplicate check somehow fails --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f4f791896..604db806b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,7 +11,7 @@ on: jobs: check-if-duplicate-action: - # continue-on-error: true # Uncomment once integration is finished + continue-on-error: true runs-on: ubuntu-latest outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} @@ -31,7 +31,7 @@ jobs: strategy: fail-fast: true matrix: - go: ['stable', 'oldstable'] + go: ['stable'] # could be a good idea to consider oldstable as well steps: - name: Check out code