summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-11 19:33:03 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-12 12:14:39 +0900
commitcfb192a7b9b00c479abbbbe35d396cc5295285e5 (patch)
treec15e81d744991ed44f60be9d37445750cec2c1e4 /.github/workflows/macos.yml
parent11a09d78c185848a179028a292f583bc356f6b25 (diff)
Added test-bundled-gems to GitHub Actions
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 5e84bdc334..c8933404a0 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -11,7 +11,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
- test_task: [ "check", "test-bundler" ]
+ test_task: [ "check", "test-bundler", "test-bundled-gems" ]
steps:
- name: Disable Firewall
run: |
@@ -32,7 +32,7 @@ jobs:
- name: configure
run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl) --with-readline-dir=$(brew --prefix readline)
- run: make $JOBS
- - name: make check/test-bundler
+ - name: make check/test-bundler/test-bundled-gems
run: make -s ${{ matrix.test_task }}
env:
TESTOPTS: "$JOBS -q --tty=no"