summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-11 07:32:30 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-11 12:17:22 +0900
commitc685679e25f6a4547c3b48c290bfb905cde0b4ef (patch)
treea940235aa4242bc7b41131f65439a3de0c512815 /.github/workflows/macos.yml
parente7996e0fd6718fa13b5cd5328f1bb6393a45392c (diff)
Use check.
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index e3b44cd4e8..44f3cfdbd4 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -11,7 +11,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
- test_task: [ "test-all", "test-spec", "test-bundler" ]
+ test_task: [ "check", "test-bundler" ]
steps:
- name: Disable Firewall
run: |
@@ -32,9 +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 test
- run: make -s test TESTOPTS="$JOBS -q --tty=no"
- - name: make test-*
+ - name: make check/test-bundler
run: make -s ${{ matrix.test_task }}
env:
TESTOPTS: "$JOBS -q --tty=no"