16 lines
338 B
YAML
16 lines
338 B
YAML
name: Debugging
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
debugging-demo:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup tmate session
|
|
uses: mxschmitt/action-tmate@v3
|
|
timeout-minutes: 5 # This will allow to open a sesion for max 5 minutes |