Skip to content

Commit da001d6

Browse files
committed
fix: remove windows tests
1 parent f0bb56f commit da001d6

1 file changed

Lines changed: 1 addition & 22 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,8 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
os: ["ubuntu-latest", "windows-latest"]
12+
os: ["ubuntu-latest"]
1313
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
14-
exclude:
15-
- os: windows-latest
16-
python-version: "3.9"
17-
- os: windows-latest
18-
python-version: "3.11"
19-
- os: windows-latest
20-
python-version: "3.12"
21-
- os: windows-latest
22-
python-version: "3.13"
2314
fail-fast: false
2415

2516
steps:
@@ -31,19 +22,7 @@ jobs:
3122
python-version: ${{ matrix.python-version }}
3223
allow-prereleases: true
3324

34-
# Step for Windows: Create and activate a virtual environment
35-
- name: Create and activate a virtual environment (Windows)
36-
if: ${{ runner.os == 'Windows' }}
37-
run: |
38-
irm https://astral.sh/uv/install.ps1 | iex
39-
$env:Path = "C:\Users\runneradmin\.local\bin;$env:Path"
40-
uv venv .venv
41-
"VIRTUAL_ENV=.venv" | Out-File -FilePath $env:GITHUB_ENV -Append
42-
"$PWD/.venv/Scripts" | Out-File -FilePath $env:GITHUB_PATH -Append
43-
44-
# Step for Unix: Create and activate a virtual environment
4525
- name: Create and activate a virtual environment (Unix)
46-
if: ${{ runner.os != 'Windows' }}
4726
run: |
4827
curl -LsSf https://astral.sh/uv/install.sh | sh
4928
uv venv .venv

0 commit comments

Comments
 (0)