Skip to content

Commit 23395d9

Browse files
committed
Run pytest
1 parent 57d8975 commit 23395d9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ jobs:
8383
image: macos-13
8484
runs-on: ${{ matrix.image }}
8585
steps:
86-
- name: Checkout repository
87-
uses: actions/checkout@v4
86+
- uses: actions/checkout@v4
8887
- uses: astral-sh/setup-uv@v4
8988
- uses: actions/download-artifact@v4
9089
with:
@@ -93,12 +92,16 @@ jobs:
9392
run: |
9493
uv venv
9594
.venv\Scripts\activate
95+
uv pip install pytest
9696
$files = Get-ChildItem "sdf-*-py3-none-any.whl"
9797
foreach ($f in $files) {
9898
uv pip install $f.FullName
9999
}
100+
uv run pytest
100101
- if: matrix.name != 'x86_64-windows'
101102
run: |
102103
uv venv
103104
source .venv/bin/activate
105+
uv pip install pytest
104106
uv pip install sdf-*-py3-none-any.whl
107+
uv run pytest

0 commit comments

Comments
 (0)