diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-19 18:57:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 18:57:36 +0100 |
commit | 02fa42b8ac5694485c7f6dedc62a873e97da2d35 (patch) | |
tree | 833b619d8cdc66d2b33b96238f0ccc26099a4e0d /.github/workflows | |
parent | 71b7f05e42f93c3da590b6f7f55658a81b607c0e (diff) | |
download | libquotient-02fa42b8ac5694485c7f6dedc62a873e97da2d35.tar.gz libquotient-02fa42b8ac5694485c7f6dedc62a873e97da2d35.zip |
continue-on-error on the job level
Continue on the step level marks the whole job as successful which is not really accurate.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f22ea6d2..269e487c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,7 @@ defaults: jobs: CI: runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.update-api != '' }} # the current upstream API definitions are expected to fail the test strategy: fail-fast: false max-parallel: 1 @@ -154,7 +155,6 @@ jobs: ls ~/.local/$BIN_DIR/quotest - name: Run tests - continue-on-error: ${{ matrix.update-api != '' }} # the current upstream API definitions are expected to fail the test env: TEST_USER: ${{ secrets.TEST_USER }} TEST_PWD: ${{ secrets.TEST_PWD }} |