We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12de2e8 commit 95824c3Copy full SHA for 95824c3
.github/workflows/precommit.yml
@@ -458,7 +458,23 @@ jobs:
458
matrix:
459
os: [ ubuntu-latest ]
460
python-version: [ "3.9", "3.11", "3.12" ]
461
- cloud-provider: [ aws ]
+ cloud-provider: [aws, gcp, azure]
462
+ exclude:
463
+ # Run 3.9 on aws
464
+ - python-version: "3.11"
465
+ cloud-provider: aws
466
+ - python-version: "3.12"
467
468
+ # Run 3.11 on gcp
469
+ - python-version: "3.9"
470
+ cloud-provider: gcp
471
472
473
+ # Run 3.12 on azure
474
475
+ cloud-provider: azure
476
477
478
steps:
479
- name: Checkout Code
480
uses: actions/checkout@v4
0 commit comments