23 lines
468 B
YAML
23 lines
468 B
YAML
|
name: "tmate"
|
||
|
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:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Setup tmate session
|
||
|
uses: mxschmitt/action-tmate@v3
|
||
|
with:
|
||
|
detached: true
|