Skip to content

Commit 99599e3

Browse files
authored
Merge branch 'develop' into castxml
2 parents 7b2e3ba + e792e4e commit 99599e3

File tree

1 file changed

+23
-16
lines changed

1 file changed

+23
-16
lines changed

.github/workflows/tests.yml

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,62 +14,65 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
include:
17-
- os: ubuntu-20.04
17+
# UBUNTU 24.04 - CASTXML EPIC 0
18+
- os: ubuntu-22.04
1819
compiler: gcc
19-
version: "9"
20+
version: "11"
2021
python-version: "3.9"
2122
castxml: "castxml"
2223
castxml-epic: 0
2324
cppstd: "-std=c++98"
2425

25-
- os: ubuntu-20.04
26+
- os: ubuntu-22.04
2627
compiler: gcc
27-
version: "9"
28+
version: "11"
2829
python-version: "3.10"
2930
castxml: "castxml"
3031
castxml-epic: 0
3132
cppstd: "-std=c++98"
3233

33-
- os: ubuntu-20.04
34+
- os: ubuntu-22.04
3435
compiler: gcc
35-
version: "9"
36+
version: "11"
3637
python-version: "3.11"
3738
castxml: "castxml"
3839
castxml-epic: 0
3940
cppstd: "-std=c++98"
4041

41-
- os: ubuntu-20.04
42+
- os: ubuntu-22.04
4243
compiler: gcc
43-
version: "9"
44+
version: "11"
4445
python-version: "3.12"
4546
castxml: "castxml"
4647
castxml-epic: 0
4748
cppstd: "-std=c++98"
4849

49-
- os: ubuntu-20.04
50+
- os: ubuntu-22.04
5051
compiler: gcc
51-
version: "9"
52+
version: "11"
5253
python-version: "3.13"
5354
castxml: "castxml"
5455
castxml-epic: 0
5556
cppstd: "-std=c++98"
5657

57-
- os: ubuntu-20.04
58+
# UBUNTU 24.04 - CASTXML EPIC 1
59+
- os: ubuntu-22.04
5860
compiler: gcc
59-
version: "9"
61+
version: "11"
6062
python-version: "3.13"
6163
castxml: "castxml"
6264
castxml-epic: 1
6365
cppstd: "-std=c++98"
6466

65-
- os: ubuntu-20.04
67+
- os: ubuntu-22.04
6668
compiler: gcc
67-
version: "9"
69+
version: "11"
6870
python-version: "3.13"
6971
castxml: "castxml"
7072
castxml-epic: 1
7173
cppstd: "-std=c++11"
7274

75+
# MACOS
7376
- os: macos-13
7477
compiler: xcode
7578
version: "default"
@@ -79,16 +82,20 @@ jobs:
7982
cppstd: "-std=c++98"
8083

8184
steps:
82-
- uses: actions/checkout@v3
85+
- uses: actions/checkout@v4
86+
8387
- name: Set up Python ${{ matrix.python-version }}
84-
uses: actions/setup-python@v4
88+
uses: actions/setup-python@v5
8589
with:
8690
python-version: ${{ matrix.python-version }}
91+
8792
- name: Display Python version
8893
run: python -c "import sys; print(sys.version)"
94+
8995
- name: Install Python lib and test libs
9096
run: |
9197
pip install '.[test]'
98+
9299
- name: Run pycodestyle
93100
run: pycodestyle . --exclude=docs
94101

0 commit comments

Comments
 (0)