Skip to content

Commit 93cd859

Browse files
committed
Add homebrew smoke test runner
1 parent 4b760f2 commit 93cd859

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

.github/workflows/homebrew.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
name: "Run Smoke Tests"
2-
32
on:
43
push:
54
branches:
65
- main
76
pull_request:
8-
schedule:
9-
- cron: "0 0 * * *"
107

118
jobs:
129
smoke-tests:

0 commit comments

Comments
 (0)