Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/homebrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: "Smoke Test Homebrew install"
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

permissions:
contents: read
Expand All @@ -20,7 +21,8 @@ jobs:
run: brew install mongosh

- name: Run smoke tests
run: npx --yes mongodb-runner -- exec -- sh -c 'env MONGOSH_SMOKE_TEST_SERVER=$MONGODB_URI mongosh --smokeTests'
# 8.0.5 due to us having macos-13 in the platform support list, SERVER-101020
run: npx --yes mongodb-runner --version 8.0.5-enterprise -- exec -- sh -c 'env MONGOSH_SMOKE_TEST_SERVER=$MONGODB_URI mongosh --smokeTests'

- name: Report failure
if: ${{ failure() }}
Expand Down