mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Improve Actions job name shown on toolip
Hoping to make it like `make (check, ...)`, `make (test-bundler, ...)` instead of `latest (...)` because some of the jobs are already not running on a latest platform.
This commit is contained in:
parent
3118c7a2d2
commit
02b6451c17
3 changed files with 9 additions and 9 deletions
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
|||
branches:
|
||||
- '*'
|
||||
jobs:
|
||||
latest:
|
||||
make:
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
12
.github/workflows/ubuntu.yml
vendored
12
.github/workflows/ubuntu.yml
vendored
|
@ -7,16 +7,16 @@ on:
|
|||
branches:
|
||||
- '*'
|
||||
jobs:
|
||||
latest:
|
||||
make:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, ubuntu-16.04]
|
||||
test_task: [ "check", "test-bundler", "test-bundled-gems" ]
|
||||
os: [ubuntu-latest, ubuntu-16.04]
|
||||
exclude:
|
||||
- os: ubuntu-16.04
|
||||
test_task: test-bundler
|
||||
- os: ubuntu-16.04
|
||||
test_task: test-bundled-gems
|
||||
- test_task: test-bundler
|
||||
os: ubuntu-16.04
|
||||
- test_task: test-bundled-gems
|
||||
os: ubuntu-16.04
|
||||
fail-fast: false
|
||||
runs-on: ${{ matrix.os }}
|
||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||
|
|
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
|
@ -7,12 +7,12 @@ on:
|
|||
branches:
|
||||
- '*'
|
||||
jobs:
|
||||
latest:
|
||||
make:
|
||||
strategy:
|
||||
matrix:
|
||||
test_task: [test]
|
||||
os: [windows-2016, windows-2019]
|
||||
vs: [2017, 2019]
|
||||
test_task: [test]
|
||||
exclude:
|
||||
- os: windows-2016
|
||||
vs: 2019
|
||||
|
|
Loading…
Reference in a new issue