From 0a6b09f9d6064363649679cd425f0e722c4b3160 Mon Sep 17 00:00:00 2001 From: Ivan Belyaev Date: Sat, 26 Oct 2024 23:01:29 +0300 Subject: [PATCH 1/2] Add python 3.13 and 3.14 to tests matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ab38f0..3bbb4d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 From 76c8ae70ad004fd8010bfadf7044029b5acb02b6 Mon Sep 17 00:00:00 2001 From: Ivan Belyaev Date: Sat, 26 Oct 2024 23:04:50 +0300 Subject: [PATCH 2/2] off fail fast --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bbb4d5..b0c7c1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest strategy: - fail-fast: true + fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: