Skip to content

Commit e684a03

Browse files
authored
Merge branch 'main' into feature/dependency-inversion-main-model-impl-info
2 parents 2c7341c + 1c737b9 commit e684a03

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-test-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v5
3535

36-
- uses: actions/setup-python@v5
36+
- uses: actions/setup-python@v6
3737
with:
3838
python-version: "3.13"
3939

@@ -308,7 +308,7 @@ jobs:
308308
- uses: actions/checkout@v5
309309

310310
- name: Setup python
311-
uses: actions/setup-python@v5
311+
uses: actions/setup-python@v6
312312
with:
313313
python-version: '3.12'
314314
architecture: x64

.github/workflows/check-code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/checkout@v5
2929

3030
- name: Set up Python
31-
uses: actions/setup-python@v5
31+
uses: actions/setup-python@v6
3232
with:
3333
python-version: '3.12'
3434

.github/workflows/sonar.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
run: |
4444
brew install boost eigen nlohmann-json msgpack-cxx doctest
4545
- name: Set up Python
46-
uses: actions/setup-python@v5
46+
uses: actions/setup-python@v6
4747
with:
4848
python-version: "3.12"
4949
- name: Install build-wrapper
5050
uses: SonarSource/sonarqube-scan-action/install-build-wrapper@v5
5151

5252
- name: Python test and coverage
5353
run: |
54-
pip install -e .[dev]
54+
CC=clang CXX=clang++ pip install -e .[dev]
5555
pytest
5656
5757
- name: Run build-wrapper for C++

0 commit comments

Comments
 (0)