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 7d56c83 commit 8f1216dCopy full SHA for 8f1216d
.github/workflows/python-app.yml
@@ -21,15 +21,22 @@ permissions:
21
22
jobs:
23
Test:
24
- runs-on: ubuntu-latest
+ strategy:
25
+ matrix:
26
+ # Python 3.10 -- earliest supported version
27
+ # Python 3.11 -- version on CSE systems
28
+ # Python 3.13 -- latest supported version
29
+ python-version: ['3.10', '3.11', '3.13']
30
+ os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
31
+ runs-on: ${{ matrix.os }}
32
steps:
33
- uses: actions/checkout@v4
34
with:
35
submodules: 'recursive'
36
- name: Set up Python
37
uses: actions/setup-python@v5
38
- python-version: '3.10'
39
+ python-version: ${{ matrix.python-version }}
40
- uses: Gr1N/setup-poetry@v9
41
- uses: actions/cache@v4
42
0 commit comments