summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2020-09-08 10:59:25 +0300
committerGitHub <noreply@github.com>2020-09-08 10:59:25 +0300
commit5496b4a7cd9f04fb28ab5c6d903f1b59a9c0842c (patch)
treef27ed79df7dbd7fba001372e10b4ca6ff4ffd1fe /.github
parentb491d477c3062d1fb064a794d74643c82d1c4adc (diff)
downloadredis-5496b4a7cd9f04fb28ab5c6d903f1b59a9c0842c.tar.gz
Add daily CI for MacOS (#7759)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/daily.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml
index 5b395351b..07cd55c87 100644
--- a/.github/workflows/daily.yml
+++ b/.github/workflows/daily.yml
@@ -168,3 +168,21 @@ jobs:
./runtest-cluster --tls
./runtest-cluster
+ test-macos-latest:
+ runs-on: macos-latest
+ if: github.repository == 'redis/redis'
+ timeout-minutes: 14400
+ steps:
+ - uses: actions/checkout@v2
+ - name: make
+ run: make
+ - name: test
+ run: |
+ ./runtest --accurate --verbose
+ - name: module api test
+ run: ./runtest-moduleapi --verbose
+ - name: sentinel tests
+ run: ./runtest-sentinel
+ - name: cluster tests
+ run: ./runtest-cluster
+