Skip to content

PART3 - CH3 - Select Runner #1

PART3 - CH3 - Select Runner

PART3 - CH3 - Select Runner #1

Workflow file for this run

---
name: PART3 - CH3 - Select Runner
on:
workflow_dispatch:
inputs:
os:
description: 'Runner OS'
required: true
default: 'ubuntu-latest'
type: choice
options:
- 'ubuntu-latest'
- 'windows-latest'
- 'macos-latest'
jobs:
build:
name: Build
runs-on: ${{ github.event.inputs.os }}
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v2
- id: run
name: Run
run: |
echo "OS: ${{ github.event.inputs.os}}"
echo "Hello World"