Skip to content

Commit 5d2cd5c

Browse files
committed
more workflow changes
1 parent 179a1d6 commit 5d2cd5c

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/durabletask-azuremanaged.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up Python 3.12
18+
- name: Set up Python 3.13
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.12
21+
python-version: 3.13
2222
- name: Install dependencies
2323
working-directory: durabletask-azuremanaged
2424
run: |
@@ -33,6 +33,10 @@ jobs:
3333
run: flake8 .
3434

3535
run-docker-tests:
36+
strategy:
37+
fail-fast: false
38+
matrix:
39+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
3640
env:
3741
EMULATOR_VERSION: "latest"
3842
needs: lint
@@ -87,7 +91,7 @@ jobs:
8791
- name: Set up Python
8892
uses: actions/setup-python@v5
8993
with:
90-
python-version: "3.12" # Adjust Python version as needed
94+
python-version: "3.13" # Adjust Python version as needed
9195

9296
- name: Install dependencies
9397
run: |

.github/workflows/durabletask.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up Python 3.12
18+
- name: Set up Python 3.13
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.12
21+
python-version: 3.13
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
@@ -35,6 +35,10 @@ jobs:
3535
run: flake8 .
3636

3737
run-e2e-tests:
38+
strategy:
39+
fail-fast: false
40+
matrix:
41+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
3842
needs: lint-and-unit-tests
3943
runs-on: ubuntu-latest
4044
steps:
@@ -68,7 +72,7 @@ jobs:
6872
- name: Set up Python
6973
uses: actions/setup-python@v5
7074
with:
71-
python-version: "3.12" # Adjust Python version as needed
75+
python-version: "3.13" # Adjust Python version as needed
7276

7377
- name: Install dependencies
7478
run: |

0 commit comments

Comments
 (0)