From f9a0e6e0a2eb5eace3824877ac6093bd161bdd18 Mon Sep 17 00:00:00 2001 From: Mogyuchi Date: Fri, 21 Jun 2024 05:04:14 +0900 Subject: [PATCH] ci: continue-on-error test --- .github/workflows/test.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a9df88dff..b668bfc97 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,6 +2,7 @@ name: test on: push: branches: ["**"] + pull_request: workflow_dispatch: inputs: # null for another event skip: @@ -11,14 +12,19 @@ permissions: {} jobs: test1: - if: > - true runs-on: ubuntu-latest steps: - - run: | + - run: exit 1 + continue-on-error: true + - run: exit 1 + continue-on-error: true + - run: exit 1 + continue-on-error: true test2: - if: >- - true runs-on: ubuntu-latest steps: - - run: '' + - run: exit 1 + continue-on-error: true + - run: exit 1 + continue-on-error: true + - run: exit 0