Skip to content

Commit

Permalink
Merge pull request #38 from advanced-security/GeekMasher-patch-1
Browse files Browse the repository at this point in the history
feat(ci): Improve Python concurrency + Python 3.13
  • Loading branch information
GeekMasher authored Dec 3, 2024
2 parents d570c86 + c7f1ccf commit ed19480
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,18 @@ jobs:
build:
# This workflow runs on the latest version of Ubuntu
runs-on: ubuntu-latest

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.python-version }}
cancel-in-progress: true

strategy:
fail-fast: false
matrix:
# Python versions to test against
# These are all the main versions of Python that are currently supported
# excluding 3.8
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- name: Checkout
Expand Down Expand Up @@ -105,4 +110,4 @@ jobs:
else
echo "No test script found"
echo "Skipping test step"
fi
fi

0 comments on commit ed19480

Please sign in to comment.