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: