Skip to content

OS ondemand

OS ondemand #10

Workflow file for this run

name: "OS ondemand"
on:
workflow_dispatch:
inputs:
os:
description: "OS to boot"
required: true
default: "macos-latest"
type: choice
options:
- ubuntu-latest
- macos-latest
- windows-latest
jobs:
test:
runs-on: ${{ inputs.os }}
steps:
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3