diff --git a/.github/workflows/tmate.yml b/.github/workflows/tmate.yml new file mode 100644 index 0000000..0826ab2 --- /dev/null +++ b/.github/workflows/tmate.yml @@ -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