Skip to content

Debug

Debug #3

Workflow file for this run

name: Debug
on:
workflow_dispatch:
inputs:
python-version:
description: 'Python Version'
required: true
type: choice
default: '3.13'
options:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
jobs:
debug:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ github.event.inputs.python-version }}
uses: actions/setup-python@v5
id: sp
with:
python-version: ${{ github.event.inputs.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install Just
uses: extractions/setup-just@v2
- name: Install Dependencies
run: |
just setup ${{ steps.sp.outputs.python-path }}
- name: Install Emacs
run: |
sudo apt install emacs
- name: Setup tmate session
uses: mxschmitt/[email protected]
with:
detached: true
timeout-minutes: 60