From 23dbd9d65f265b52a92d57a38b64295af946c269 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 24 Jul 2024 09:59:01 +0200 Subject: [PATCH] GitHub Actions: Add Python 3.13 beta 4 to the build-pipeline * https://www.python.org/download/pre-releases * https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#allow-pre-releases * xhtml2pdf/xhtml2pdf#775 --- .github/workflows/build-pipeline.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-pipeline.yml b/.github/workflows/build-pipeline.yml index 9e74f255..8b53b6fd 100644 --- a/.github/workflows/build-pipeline.yml +++ b/.github/workflows/build-pipeline.yml @@ -52,14 +52,16 @@ jobs: runs-on: ubuntu-latest needs: build strategy: + fail-fast: false 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"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Download dist artifacts uses: actions/download-artifact@v4 with: @@ -79,14 +81,16 @@ jobs: runs-on: ubuntu-latest needs: build strategy: + fail-fast: false 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"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Download dist artifacts uses: actions/download-artifact@v4 with: