Skip to content

Commit c1530c2

Browse files
committed
🔧 disable test runs for Python 3.13
Signed-off-by: burgholzer <burgholzer@me.com>
1 parent 414201a commit c1530c2

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,37 @@ concurrency:
1414
jobs:
1515
change-detection:
1616
name: 🔍 Change
17-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-change-detection.yml@v1.1.5
17+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-change-detection.yml@v1.2.1
1818

1919
cpp-tests:
2020
name: 🇨‌ Test
2121
needs: change-detection
2222
if: fromJSON(needs.change-detection.outputs.run-cpp-tests)
23-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-ci.yml@v1.1.5
23+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-ci.yml@v1.2.1
2424
with:
2525
cmake-args-macos: -DMQT_CORE_WITH_GMP=ON
2626

2727
cpp-linter:
2828
name: 🇨‌ Lint
2929
needs: change-detection
3030
if: fromJSON(needs.change-detection.outputs.run-cpp-linter)
31-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-linter.yml@v1.1.5
31+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-linter.yml@v1.2.1
3232
with:
3333
cmake-args: -DBUILD_MQT_CORE_BENCHMARKS=ON
3434

3535
python-tests:
3636
name: 🐍 Test
3737
needs: change-detection
3838
if: fromJSON(needs.change-detection.outputs.run-python-tests)
39-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-ci.yml@v1.1.5
39+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-ci.yml@v1.2.1
40+
with:
41+
skip-testing-latest-python: true
4042

4143
code-ql:
4244
name: 📝 CodeQL
4345
needs: change-detection
4446
if: fromJSON(needs.change-detection.outputs.run-code-ql)
45-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-code-ql.yml@v1.1.5
47+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-code-ql.yml@v1.2.1
4648

4749
required-checks-pass: # This job does nothing and is only used for branch protection
4850
name: 🚦 Check

0 commit comments

Comments
 (0)