diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2021-08-30 01:25:22 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2021-08-30 01:30:13 +0900 |
| commit | a40f9c4a51ae342efaa6aafba607c44ef1ebfac4 (patch) | |
| tree | caa05b13ea2f5385608db3ebe8522212fe9c1fd3 /.github | |
| parent | 9f9ea283754ddc9b4deb2ba1863c40d28d5acfa9 (diff) | |
Fix empty values to booleans
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/windows.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8e853d8e6d..66b2992049 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -98,12 +98,12 @@ jobs: timeout-minutes: 60 run: | nmake test-all TESTOPTS="-j%NUMBER_OF_PROCESSORS% --job-status=normal" - continue-on-error: ${{ matrix.continue-on-error }} + continue-on-error: ${{ matrix.continue-on-error || false }} - name: nmake test-spec timeout-minutes: 10 run: | nmake test-spec - continue-on-error: ${{ matrix.continue-on-error }} + continue-on-error: ${{ matrix.continue-on-error || false }} - uses: k0kubun/action-slack@v2.0.0 with: payload: | |
