Skip to content

Commit a75e657

Browse files
committed
test: temp on D:
Signed-off-by: Morgan Epp <60796713+epmog@users.noreply.github.com>
1 parent 2f149a6 commit a75e657

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Test Windows Temp Dir
2+
3+
on:
4+
push:
5+
branches: [ mainline ]
6+
pull_request:
7+
branches: [ mainline ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
Python:
12+
name: windows-latest, python ${{ matrix.python-version }}
13+
runs-on: windows-latest
14+
permissions:
15+
contents: read
16+
env:
17+
PYTHON: ${{ matrix.python-version }}
18+
TEMP: D:\Temp
19+
TMP: D:\Temp
20+
strategy:
21+
matrix:
22+
python-version: ['3.11', '3.12', '3.13', '3.14']
23+
steps:
24+
- name: Prepare temp dir
25+
run: mkdir -p D:\Temp
26+
shell: cmd
27+
28+
- uses: actions/checkout@v4
29+
30+
- name: Set up Python ${{ matrix.python-version }}
31+
uses: actions/setup-python@v5
32+
with:
33+
python-version: ${{ matrix.python-version }}
34+
35+
- name: Install Hatch
36+
run: pip install --upgrade hatch "click<8.3" "virtualenv<21"
37+
38+
- name: Run Linting
39+
run: hatch -v run lint
40+
41+
- name: Run Build
42+
run: hatch -v build
43+
44+
- name: Run Tests
45+
run: hatch run test

0 commit comments

Comments
 (0)