mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Be able to skip tests [ci skip] (#2192)
Either via pull request title or commit message (for docs fixes on master).
This commit is contained in:
parent
4256cb4caf
commit
a45d696351
1 changed files with 9 additions and 0 deletions
9
.github/workflows/ruby.yml
vendored
9
.github/workflows/ruby.yml
vendored
|
@ -11,6 +11,9 @@ jobs:
|
|||
TESTOPTS: -v
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
if: |
|
||||
!(contains(github.event.pull_request.title, '[ci skip]')
|
||||
|| contains(github.event.head_commit.message, '[ci skip]'))
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
@ -56,6 +59,9 @@ jobs:
|
|||
TESTOPTS: -v
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
if: |
|
||||
!(contains(github.event.pull_request.title, '[ci skip]')
|
||||
|| contains(github.event.head_commit.message, '[ci skip]'))
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
@ -101,6 +107,9 @@ jobs:
|
|||
TESTOPTS: -v
|
||||
|
||||
runs-on: ${{ matrix.cfg.os }}
|
||||
if: |
|
||||
!(contains(github.event.pull_request.title, '[ci skip]')
|
||||
|| contains(github.event.head_commit.message, '[ci skip]'))
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue