1
0
Fork 0
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:
Takashi Kokubun 2019-11-12 20:44:00 -08:00
parent 3118c7a2d2
commit 02b6451c17
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD
3 changed files with 9 additions and 9 deletions

View file

@ -7,7 +7,7 @@ on:
branches:
- '*'
jobs:
latest:
make:
runs-on: macos-latest
strategy:
matrix:

View file

@ -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]')"

View file

@ -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