From 3fc30f2961000ecb1dbb9d636fe13ca69e0663ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20N=C3=A9meth?= Date: Thu, 22 Feb 2024 18:04:13 +0300 Subject: [PATCH] fix(ci:integration-test): add only manual trigger option for macos (#21) --- .github/workflows/integration-test.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index bacf825..46e83e5 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -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