aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-10-10 16:48:26 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-10-10 16:48:26 +0900
commit0b26f56a77a6dabe2b1c09c4569ed846798afcdc (patch)
treedabd2cd2f8ffe845dfef030478b87814a6f7e135 /.github/workflows/macos.yml
parent203b7fa1ae8cc40d41c38d684f70b3fea7fae813 (diff)
downloadruby-0b26f56a77a6dabe2b1c09c4569ed846798afcdc.tar.gz
Remove unreachable step level `[ci skip]`
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 7647b0668e..f95860783f 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -46,13 +46,13 @@ jobs:
run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
env:
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
- if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
+ if: matrix.test_task != 'test-bundled-gems'
- name: Tests (test-bundled-gems)
# Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved
run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
env:
RUBY_TESTOPTS: "-q --tty=no"
- if: matrix.test_task == 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
+ if: matrix.test_task == 'test-bundled-gems'
- name: Leaked Globals
run: make -s leaked-globals
- uses: k0kubun/action-slack@v2.0.0