Skip to content

Commit cbcb063

Browse files
authored
Integration testing of supported python versions (#285)
## Changes This PR updates our CI pipelines to ensure that integration tests are performed against all supported python versions. _Note: the set of checks to wait before merging will need to be updated._ ### Tests - existing integration tests
1 parent d421bd4 commit cbcb063

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/acceptance.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ concurrency:
1919
jobs:
2020
integration:
2121
if: github.event_name == 'pull_request'
22-
environment: account-admin
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
python: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
26+
environment:
27+
name: account-admin
28+
deployment: false
2329
permissions:
2430
# Access to the integration testing infrastructure.
2531
id-token: write

0 commit comments

Comments
 (0)