-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (44 loc) · 1.14 KB
/
debug.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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