Skip to content

Commit

Permalink
fix(ci:integration-test): add only manual trigger option for macos (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger authored Feb 22, 2024
1 parent 8e02167 commit 3fc30f2
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,18 @@ on:
# “At 00:00 on Sunday.”
- cron: "0 0 * * 0"
workflow_dispatch:
inputs:
runner-os:
default: ubuntu-latest
type: choice
options:
- ubuntu-latest
- macos-latest


jobs:
run-it-tests-job:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
runs-on: ${{ inputs.runner-os || 'ubuntu-latest' }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 3fc30f2

Please sign in to comment.