Skip to content

Commit a7f879f

Browse files
committed
add a dedicated debug workflow
1 parent 564985c commit a7f879f

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.github/workflows/debug.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Debug
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
python-version:
7+
description: 'Python Version'
8+
required: true
9+
type: choice
10+
default: '3.13'
11+
options:
12+
- '3.9'
13+
- '3.10'
14+
- '3.11'
15+
- '3.12'
16+
- '3.13'
17+
18+
jobs:
19+
20+
lint:
21+
runs-on: ubuntu-latest
22+
permissions:
23+
contents: read
24+
25+
steps:
26+
- uses: actions/checkout@v4
27+
- name: Set up Python ${{ github.event.inputs.python-version }}
28+
uses: actions/setup-python@v5
29+
id: sp
30+
with:
31+
python-version: ${{ github.event.inputs.python-version }}
32+
- name: Install uv
33+
uses: astral-sh/setup-uv@v5
34+
with:
35+
enable-cache: true
36+
- name: Install Just
37+
uses: extractions/setup-just@v2
38+
- name: Install Dependencies
39+
run: |
40+
just setup ${{ steps.sp.outputs.python-path }}
41+
- name: Install Emacs
42+
run: |
43+
sudo apt install emacs
44+
- name: Setup tmate session
45+
uses: mxschmitt/[email protected]
46+
with:
47+
detached: true
48+
timeout-minutes: 60

0 commit comments

Comments
 (0)