52
52
- uses : actions/checkout@v4
53
53
- name : Set up Python ${{ matrix.python-version }}
54
54
uses : actions/setup-python@v5
55
+ id : sp
55
56
with :
56
57
python-version : ${{ matrix.python-version }}
57
58
- name : install-emacs-linux
68
69
uses : extractions/setup-just@v2
69
70
- name : Install
70
71
run : |
71
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
72
+ just init ${{ steps.sp .outputs.python-path }}
72
73
just install
73
74
just pin-dependency Django~=${{ matrix.django-version }}
74
75
sudo apt remove powershell
@@ -107,6 +108,7 @@ jobs:
107
108
- uses : actions/checkout@v4
108
109
- name : Set up Python ${{ matrix.python-version }}
109
110
uses : actions/setup-python@v5
111
+ id : sp
110
112
with :
111
113
python-version : ${{ matrix.python-version }}
112
114
- name : setup-ssh-debug
@@ -121,7 +123,7 @@ jobs:
121
123
uses : extractions/setup-just@v2
122
124
- name : Install
123
125
run : |
124
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
126
+ just init ${{ steps.sp .outputs.python-path }}
125
127
just install
126
128
just pin-dependency Django~=${{ matrix.django-version }}
127
129
- name : Run Unit Tests
@@ -158,6 +160,7 @@ jobs:
158
160
- uses : actions/checkout@v4
159
161
- name : Set up Python ${{ matrix.python-version }}
160
162
uses : actions/setup-python@v5
163
+ id : sp
161
164
with :
162
165
python-version : ${{ matrix.python-version }}
163
166
- name : install-emacs-macos
@@ -174,7 +177,7 @@ jobs:
174
177
brew install just
175
178
- name : Install
176
179
run : |
177
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
180
+ just init ${{ steps.sp .outputs.python-path }}
178
181
just install
179
182
just pin-dependency Django~=${{ matrix.django-version }}
180
183
- name : Run Unit Tests
@@ -229,6 +232,7 @@ jobs:
229
232
- uses : actions/checkout@v4
230
233
- name : Set up Python ${{ matrix.python-version }}
231
234
uses : actions/setup-python@v5
235
+ id : sp
232
236
with :
233
237
python-version : ${{ matrix.python-version }}
234
238
- name : install-emacs-macos
@@ -244,7 +248,7 @@ jobs:
244
248
uses : extractions/setup-just@v2
245
249
- name : Install
246
250
run : |
247
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
251
+ just init ${{ steps.sp .outputs.python-path }}
248
252
just install --with psycopg3
249
253
just pin-dependency Django~=${{ matrix.django-version }}
250
254
- name : Run Unit Tests
@@ -279,6 +283,7 @@ jobs:
279
283
- uses : actions/checkout@v4
280
284
- name : Set up Python ${{ matrix.python-version }}
281
285
uses : actions/setup-python@v5
286
+ id : sp
282
287
with :
283
288
python-version : ${{ matrix.python-version }}
284
289
- name : install-emacs-linux
@@ -294,7 +299,7 @@ jobs:
294
299
uses : extractions/setup-just@v2
295
300
- name : Install
296
301
run : |
297
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
302
+ just init ${{ steps.sp .outputs.python-path }}
298
303
just install
299
304
just pin-dependency Django~=${{ matrix.django-version }}
300
305
- name : Test Tab Completion
@@ -330,6 +335,7 @@ jobs:
330
335
- uses : actions/checkout@v4
331
336
- name : Set up Python ${{ matrix.python-version }}
332
337
uses : actions/setup-python@v5
338
+ id : sp
333
339
with :
334
340
python-version : ${{ matrix.python-version }}
335
341
- name : install-emacs-linux
@@ -345,7 +351,7 @@ jobs:
345
351
uses : extractions/setup-just@v2
346
352
- name : Install
347
353
run : |
348
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
354
+ just init ${{ steps.sp .outputs.python-path }}
349
355
just install
350
356
just pin-dependency Django~=${{ matrix.django-version }}
351
357
- name : Install Fish shell
@@ -387,6 +393,7 @@ jobs:
387
393
- uses : actions/checkout@v4
388
394
- name : Set up Python ${{ matrix.python-version }}
389
395
uses : actions/setup-python@v5
396
+ id : sp
390
397
with :
391
398
python-version : ${{ matrix.python-version }}
392
399
- name : install-emacs-macos
@@ -412,7 +419,7 @@ jobs:
412
419
run : echo "SHELL=$(which zsh)" >> $GITHUB_ENV
413
420
- name : Install
414
421
run : |
415
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
422
+ just init ${{ steps.sp .outputs.python-path }}
416
423
just install
417
424
just pin-dependency Django~=${{ matrix.django-version }}
418
425
- name : Run Unit Tests
@@ -450,6 +457,7 @@ jobs:
450
457
- uses : actions/checkout@v4
451
458
- name : Set up Python ${{ matrix.python-version }}
452
459
uses : actions/setup-python@v5
460
+ id : sp
453
461
with :
454
462
python-version : ${{ matrix.python-version }}
455
463
- name : install-emacs-macos
@@ -466,7 +474,7 @@ jobs:
466
474
brew install just
467
475
- name : Install
468
476
run : |
469
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
477
+ just init ${{ steps.sp .outputs.python-path }}
470
478
just install
471
479
just pin-dependency Django~=${{ matrix.django-version }}
472
480
- name : Run Unit Tests
@@ -503,6 +511,7 @@ jobs:
503
511
- uses : actions/checkout@v4
504
512
- name : Set up Python ${{ matrix.python-version }}
505
513
uses : actions/setup-python@v5
514
+ id : sp
506
515
with :
507
516
python-version : ${{ matrix.python-version }}
508
517
- name : install-emacs-macos
@@ -526,7 +535,7 @@ jobs:
526
535
run : echo "SHELL=$(which fish)" >> $GITHUB_ENV
527
536
- name : Install
528
537
run : |
529
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
538
+ just init ${{ steps.sp .outputs.python-path }}
530
539
just install
531
540
just pin-dependency Django~=${{ matrix.django-version }}
532
541
- name : Run Tab Completion Tests
@@ -564,6 +573,7 @@ jobs:
564
573
- uses : actions/checkout@v4
565
574
- name : Set up Python ${{ matrix.python-version }}
566
575
uses : actions/setup-python@v5
576
+ id : sp
567
577
with :
568
578
python-version : ${{ matrix.python-version }}
569
579
- name : install-vim-windows
@@ -581,7 +591,7 @@ jobs:
581
591
uses : extractions/setup-just@v2
582
592
- name : Install Release Dependencies
583
593
run : |
584
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
594
+ just init ${{ steps.sp .outputs.python-path }}
585
595
just install
586
596
just pin-dependency Django~=${{ matrix.django-version }}
587
597
shell : powershell
@@ -629,11 +639,12 @@ jobs:
629
639
detached : true
630
640
- uses : actions/checkout@v4
631
641
- uses : actions/setup-python@v5
642
+ id : sp
632
643
- name : Setup Just
633
644
uses : extractions/setup-just@v2
634
645
- name : Install Release Dependencies
635
646
run : |
636
- just init ${{ steps.setup_python .outputs.python-location }}/bin/python
647
+ just init ${{ steps.sp .outputs.python-path }}
637
648
just install
638
649
639
650
- name : Get coverage files
0 commit comments