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 8e02167 commit 3fc30f2Copy full SHA for 3fc30f2
.github/workflows/integration-test.yml
@@ -13,13 +13,18 @@ on:
13
# “At 00:00 on Sunday.”
14
- cron: "0 0 * * 0"
15
workflow_dispatch:
16
+ inputs:
17
+ runner-os:
18
+ default: ubuntu-latest
19
+ type: choice
20
+ options:
21
+ - ubuntu-latest
22
+ - macos-latest
23
+
24
25
jobs:
26
run-it-tests-job:
- strategy:
- matrix:
- os: [macos-latest, ubuntu-latest]
- runs-on: ${{ matrix.os }}
27
+ runs-on: ${{ inputs.runner-os || 'ubuntu-latest' }}
28
steps:
29
- name: Checkout
30
uses: actions/checkout@v2
0 commit comments