We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57d8975 commit 23395d9Copy full SHA for 23395d9
.github/workflows/build.yml
@@ -83,8 +83,7 @@ jobs:
83
image: macos-13
84
runs-on: ${{ matrix.image }}
85
steps:
86
- - name: Checkout repository
87
- uses: actions/checkout@v4
+ - uses: actions/checkout@v4
88
- uses: astral-sh/setup-uv@v4
89
- uses: actions/download-artifact@v4
90
with:
@@ -93,12 +92,16 @@ jobs:
93
92
run: |
94
uv venv
95
.venv\Scripts\activate
+ uv pip install pytest
96
$files = Get-ChildItem "sdf-*-py3-none-any.whl"
97
foreach ($f in $files) {
98
uv pip install $f.FullName
99
}
100
+ uv run pytest
101
- if: matrix.name != 'x86_64-windows'
102
103
104
source .venv/bin/activate
105
106
uv pip install sdf-*-py3-none-any.whl
107
0 commit comments