Skip to content

Commit

Permalink
The included set should be expanded values [ci skip]
Browse files Browse the repository at this point in the history
While the `matrix` level values are expanded from the production
of each arrays, `include`d set should be consist from expanded
single values.
  • Loading branch information
nobu committed Dec 28, 2021
1 parent bf97415 commit bab8623
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/mingw.yml
Expand Up @@ -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:
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit bab8623

Please sign in to comment.