Skip to content

Commit d8e0171

Browse files
committed
Fix build
1 parent e25d645 commit d8e0171

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- "v*"
77
branches:
88
- master
9+
pull_request:
910

1011
jobs:
1112
build_sdist:
@@ -25,7 +26,7 @@ jobs:
2526
python -m build --sdist --outdir dist/ .
2627
- name: Install
2728
run: |
28-
pip install dist/
29+
pip install dist/*
2930
- name: Run tests
3031
run: |
3132
pytest tests
@@ -54,7 +55,7 @@ jobs:
5455
python -m build --sdist --outdir dist/ .
5556
- name: Install
5657
run: |
57-
pip install dist/
58+
pip install dist/*
5859
- name: Run tests
5960
run: |
6061
pytest tests

0 commit comments

Comments
 (0)