Skip to content

Commit aa08b1a

Browse files
authored
Improves actions (#45)
1 parent 028278b commit aa08b1a

File tree

7 files changed

+29
-120
lines changed

7 files changed

+29
-120
lines changed

.github/workflows/documentation.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v3
2121

22-
# Used to host cibuildwheel
2322
- uses: actions/setup-python@v4
2423
with:
2524
python-version: '3.11'

.github/workflows/rstcheck.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515

16-
# Used to host cibuildwheel
1716
- uses: actions/setup-python@v4
1817
with:
1918
python-version: '3.11'

.github/workflows/wheels-any.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build Any Wheel
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- 'releases/**'
8+
9+
jobs:
10+
build_wheels:
11+
name: Build wheels on ${{ matrix.os }}
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest]
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
20+
- uses: actions/setup-python@v4
21+
with:
22+
python-version: '3.11'
23+
24+
- name: build wheel
25+
run: python -m pip wheel .
26+
27+
- uses: actions/upload-artifact@v3
28+
with:
29+
path: ./mlstatpy*.whl

.github/workflows/wheels-linux.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/wheels-mac.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/wheels-windows.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)