summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-12-28 19:24:20 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-12-28 19:29:47 +0900
commitbab862334313c08ec4f218cb1de1774c9909e3be (patch)
tree78c1b3266e91ee09b1edc101404e7555f4b0c930
parentbf97415c02b11a8949f715431aca9eeb6311add2 (diff)
The `include`d set should be expanded values [ci skip]
While the `matrix` level values are expanded from the production of each arrays, `include`d set should be consist from expanded single values.
-rw-r--r--.github/workflows/mingw.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index 8efedae88b..05c813b498 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -37,10 +37,10 @@ jobs:
include:
- msystem: "MINGW64"
base_ruby: 2.6
- test_task: [ "check" ] # to make job names consistent
+ test_task: "check" # to make job names consistent
- msystem: "UCRT64"
base_ruby: head
- test_task: [ "check" ] # to make job names consistent
+ test_task: "check" # to make job names consistent
fail-fast: false
if: ${{ !startsWith(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }}
steps:
@@ -133,7 +133,7 @@ jobs:
payload: |
{
"ci": "GitHub Actions",
- "env": "${{ github.workflow }} ${{ matrix.msystem }} / ${{ join(matrix.test_task) }}",
+ "env": "${{ github.workflow }} ${{ matrix.msystem }} / ${{ matrix.test_task }}",
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
"commit": "${{ github.sha }}",
"branch": "${{ github.ref }}".split('/').reverse()[0]