Skip to content

Commit 6b9a861

Browse files
committed
fixup! fixup! tentatively separate build and tests for sdist
1 parent 2a78f78 commit 6b9a861

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

.github/workflows/wheels.yaml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,17 @@ jobs:
8686
name: sdist
8787
path: dist/*.tar.gz
8888

89-
- name: Upload pytest-config
89+
- name: Upload pyproject.toml
9090
uses: actions/upload-artifact@v4
9191
with:
92-
name: pytest-configuration
93-
path: (conftest.py|pyproject.toml)
92+
name: pyproject-toml
93+
path: pyproject.toml
94+
95+
- name: Upload conftest.py
96+
uses: actions/upload-artifact@v4
97+
with:
98+
name: conftest-py
99+
path: conftest.py
94100

95101
test_sdist:
96102
name: TEST source distribution
@@ -103,11 +109,17 @@ jobs:
103109
name: sdist
104110
path: dist
105111

106-
- name: Download pytest-config
112+
- name: Download pyproject.toml
113+
uses: actions/download-artifact@v5
114+
with:
115+
name: pyproject-toml
116+
path: pyproject.toml
117+
118+
- name: Download conftest.py
107119
uses: actions/download-artifact@v5
108120
with:
109-
name: pytest-configuration
110-
path: (conftest.py|pyproject.toml)
121+
name: conftest-py
122+
path: conftest.py
111123

112124
- name: Set up Python
113125
uses: astral-sh/setup-uv@v7

0 commit comments

Comments
 (0)