Skip to content

Dispatch tests with inputs #28

Dispatch tests with inputs

Dispatch tests with inputs #28

name: "Dispatch tests with inputs"
on:
workflow_dispatch:
inputs:
os:
required: true
description: "Operating system"
type: choice
options:
- 'windows-latest'
- 'ubuntu-24.04'
- 'macos-latest'
matlab-version:
required: true
description: "MATLAB version"
type: choice
options:
- 'R2021b'
- 'R2022a'
- 'R2022b'
- 'R2023a'
- 'R2023b'
- 'R2024a'
julia-version:
required: true
description: "Julia version"
type: choice
options:
- '1.7'
- '1.8'
- '1.9'
- '1.10'
jobs:
test:
uses: ./.github/workflows/run-tests-reusable.yml
secrets: inherit
with:
os: ${{ inputs.os }}
matlab-version: ${{ inputs.matlab-version }}
julia-version: ${{ inputs.julia-version }}