[前][次][番号順一覧][スレッド一覧]

ruby-changes:67341

From: Nobuyoshi <ko1@a...>
Date: Mon, 30 Aug 2021 01:44:02 +0900 (JST)
Subject: [ruby-changes:67341] a40f9c4a51 (master): Fix empty values to booleans

https://git.ruby-lang.org/ruby.git/commit/?id=a40f9c4a51

From a40f9c4a51ae342efaa6aafba607c44ef1ebfac4 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Mon, 30 Aug 2021 01:25:22 +0900
Subject: Fix empty values to booleans

---
 .github/workflows/windows.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 8e853d8..66b2992 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -98,12 +98,12 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/windows.yml#L98
         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@v...
         with:
           payload: |
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]