File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change 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+ 46+ with :
47+ detached : true
48+ timeout-minutes : 60
You can’t perform that action at this time.
0 commit comments