We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86af54f commit 3a754b0Copy full SHA for 3a754b0
1 file changed
.github/workflows/Test.yml
@@ -14,9 +14,19 @@ jobs:
14
timeout-minutes: 30
15
strategy:
16
matrix:
17
- python-version: ['3.10', '3.12', '3.13']
+ # test for:
18
+ # * Python 3.10 - oldest supported version
19
+ # * Python 3.12 - changes in OMCSession / OMCPath
20
+ # * Python 3.14 - latest Python version
21
+ python-version: ['3.10', '3.12', '3.14']
22
+ # * Linux using ubuntu-latest
23
+ # * Windows using windows-latest
24
os: ['ubuntu-latest', 'windows-latest']
- omc-version: ['stable', 'nightly']
25
+ # * OM 1.25.0 - before changing definition of simulation overrides
26
+ # * OM stable - latest stable version
27
+ # * OM nightly - latest nightly build
28
+ omc-version: ['1.25.0', 'stable', 'nightly']
29
+ # => total of 12 runs for each test
30
31
steps:
32
- uses: actions/checkout@v6
0 commit comments