Skip to content

Commit c98bb7f

Browse files
author
Martin Urban
committed
Update github action
1 parent 308b0de commit c98bb7f

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.github/workflows/build_wheel.yaml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
name: Build Wheel
22

3-
on:
4-
push:
5-
branches:
6-
- main
3+
on: [push]
74

85
jobs:
96
build:
7+
108
runs-on: ubuntu-latest
119
strategy:
1210
matrix:
13-
python-version: [3.9, 3.10, 3.11, 3.12]
11+
python-version: ["pypy3.10", "3.9", "3.10", "3.11", "3.12", "3.13"]
1412

1513
steps:
16-
- name: Checkout code
17-
uses: actions/checkout@v2
18-
14+
- uses: actions/checkout@v4
1915
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v5
2117
with:
2218
python-version: ${{ matrix.python-version }}
19+
# You can test your matrix by printing the current Python version
20+
- name: Display Python version
21+
run: python -c "import sys; print(sys.version)"
2322

2423
- name: Install dependencies
2524
run: |

0 commit comments

Comments
 (0)