add tmate workflow
This commit is contained in:
parent
9a0bac5a35
commit
56b0ad6a54
1 changed files with 22 additions and 0 deletions
22
.github/workflows/tmate.yml
vendored
Normal file
22
.github/workflows/tmate.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
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
|
Loading…
Add table
Reference in a new issue