Skip to content

Commit 3fc30f2

Browse files
authored
fix(ci:integration-test): add only manual trigger option for macos (#21)
1 parent 8e02167 commit 3fc30f2

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/integration-test.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,18 @@ on:
1313
# “At 00:00 on Sunday.”
1414
- cron: "0 0 * * 0"
1515
workflow_dispatch:
16+
inputs:
17+
runner-os:
18+
default: ubuntu-latest
19+
type: choice
20+
options:
21+
- ubuntu-latest
22+
- macos-latest
23+
1624

1725
jobs:
1826
run-it-tests-job:
19-
strategy:
20-
matrix:
21-
os: [macos-latest, ubuntu-latest]
22-
runs-on: ${{ matrix.os }}
27+
runs-on: ${{ inputs.runner-os || 'ubuntu-latest' }}
2328
steps:
2429
- name: Checkout
2530
uses: actions/checkout@v2

0 commit comments

Comments
 (0)