ci/cd - trying a hack to support dynamic runs-on

This commit is contained in:
florian 2023-03-05 17:51:03 +01:00
parent ed4d945293
commit 2604d9a563
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
1 changed files with 4 additions and 1 deletions

View File

@ -21,7 +21,10 @@ on:
jobs:
tests:
runs-on: ${{ fromJSON(github.event.inputs.RUNS_ON) }}
strategy:
matrix:
runs-on: ${{ fromJSON(inputs.RUNS_ON) }}
runs-on: ${{ matrix.runs-on }}
steps:
# Prepare
- name: Checkout source code