summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2025-10-07 18:20:13 +0200
committerMarkus Heiser <markus.heiser@darmarIT.de>2025-10-08 13:47:22 +0200
commit898fbe7bc2a317eea07e1442eac5539b9bfa9405 (patch)
tree4cbd9ceba1b3eb31e41df069d1a63ac0e0db9202 /.github/workflows
parentd16283d93a7b7b691bf12c13db1f1020829b4278 (diff)
[mod] ci: add cp3.14 (part 2)
Use stable version (remove `-dev` suffix). Stop CI on error [1] / Don't ignore when 3.14 ends with ERROR. [1] https://github.com/searxng/searxng/pull/5217 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/integration.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index 7b0f58cf8..b10a1b8ed 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -25,14 +25,13 @@ jobs:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-24.04
strategy:
- fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- - "3.14-dev"
+ - "3.14"
steps:
- name: Setup Python
@@ -56,7 +55,6 @@ jobs:
run: make V=1 install
- name: Run tests
- continue-on-error: ${{ matrix.python-version == '3.14-dev' }}
run: make V=1 ci.test
theme: