We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12bbe83 commit f16ee94Copy full SHA for f16ee94
.github/workflows/release_staging.yml
@@ -6,6 +6,24 @@ on:
6
- master
7
8
jobs:
9
+ test:
10
+ name: Test (${{ matrix.version }})
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v5
14
+ - run: |
15
+ PYTHON_VERSION=${{ matrix.version }} make test
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ version:
20
+ - "3.8"
21
+ - "3.9"
22
+ - "3.10"
23
+ - "3.11"
24
+ - "3.12"
25
+ - "3.13"
26
+
27
gen-binary:
28
name: Gen Binary - Linux - AMD64
29
runs-on: ubuntu-latest
0 commit comments