Skip to content

Commit ae09db5

Browse files
committed
Strip down the CI script to do testing but no releases, after adding a dedicated wheel building workflow.
1 parent f6b3928 commit ae09db5

File tree

1 file changed

+5
-23
lines changed

1 file changed

+5
-23
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build & Publish wheel
1+
name: CI tests
22

33
on:
44
push:
@@ -23,12 +23,6 @@ jobs:
2323
- name: Build sdist
2424
run: make sdist
2525

26-
- name: Release
27-
uses: softprops/action-gh-release@v1
28-
if: startsWith(github.ref, 'refs/tags/')
29-
with:
30-
files: dist/*.tar.gz
31-
3226
- name: Archive sdist
3327
uses: actions/upload-artifact@v3
3428
with:
@@ -42,10 +36,10 @@ jobs:
4236
fail-fast: false
4337

4438
matrix:
45-
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
39+
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
4640

4741
include:
48-
- python-version: "3.12-dev"
42+
- python-version: "3.13-dev"
4943
allowed_failure: true
5044

5145
runs-on: ubuntu-20.04
@@ -133,12 +127,6 @@ jobs:
133127
- name: Copy wheels in dist
134128
run: cp -v wheelhouse*/*-m*linux*.whl dist/ # manylinux / musllinux
135129

136-
- name: Release
137-
uses: softprops/action-gh-release@v1
138-
if: startsWith(github.ref, 'refs/tags/')
139-
with:
140-
files: dist/*.whl
141-
142130
- name: Archive Wheels
143131
uses: actions/upload-artifact@v3
144132
with:
@@ -155,10 +143,10 @@ jobs:
155143
#os: [macos-10.15, windows-latest]
156144
#os: [macos-10.15, macOS-M1]
157145
os: [macos-11.0, windows-latest]
158-
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
146+
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
159147

160148
include:
161-
- python-version: "3.12-dev"
149+
- python-version: "3.13-dev"
162150
allowed_failure: true
163151
exclude:
164152
- python-version: "2.7"
@@ -198,12 +186,6 @@ jobs:
198186
- name: Run slow tests
199187
run: make testslow
200188

201-
- name: Release
202-
uses: softprops/action-gh-release@v1
203-
if: startsWith(github.ref, 'refs/tags/')
204-
with:
205-
files: dist/*.whl
206-
207189
- name: Upload wheels
208190
uses: actions/upload-artifact@v3
209191
with:

0 commit comments

Comments
 (0)