We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea91573 commit 0044921Copy full SHA for 0044921
1 file changed
.github/workflows/build.yml
@@ -11,15 +11,18 @@ on:
11
jobs:
12
build:
13
runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ python-version: ["3.8", "3.12"]
17
steps:
18
19
- name: Checkout Repository
20
uses: actions/checkout@v4
21
- - name: Set up Python 3.11
22
+ - name: Set up Python ${{ matrix.python-version }}
23
uses: actions/setup-python@v5
24
with:
- python-version: 3.11
25
+ python-version: ${{ matrix.python-version }}
26
27
- name: Run build
28
run: |
@@ -38,8 +41,10 @@ jobs:
38
41
ref: main
39
42
path: main
40
43
token: ${{ secrets.GITHUB_TOKEN }}
44
+ if: ${{ matrix.python-version == 3.12 }}
45
46
- name: Push to main
47
48
49
cp -R target/* main
50
cd main
0 commit comments