We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b760f2 commit 93cd859Copy full SHA for 93cd859
.github/workflows/homebrew.yml
@@ -0,0 +1,17 @@
1
+name: "Smoke Test Homebrew install"
2
+
3
+on:
4
+ schedule:
5
+ - cron: "0 0 * * *"
6
+ pull_request:
7
8
+jobs:
9
+ smoke-test-homebrew:
10
+ runs-on: ${{ matrix.runner}}
11
+ strategy:
12
+ matrix:
13
+ runner: [macos-13, macos-14, macos-15]
14
+ fail-fast: false
15
+ steps:
16
+ - run: brew install mongosh
17
+ - run: mongosh --smokeTests
.github/workflows/smoke-tests.yml
@@ -1,12 +1,9 @@
name: "Run Smoke Tests"
-
on:
push:
branches:
- main
pull_request:
- schedule:
- - cron: "0 0 * * *"
jobs:
smoke-tests:
0 commit comments