Skip to content

Commit 0e83a74

Browse files
committed
Add supported Python versions in test matrix
1 parent fed97cd commit 0e83a74

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/validate.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-latest, windows-latest, macos-latest]
22+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2223
runs-on: ${{ matrix.os }}
2324
steps:
2425
- uses: actions/checkout@v3
25-
2626
- name: Set up Python
2727
uses: actions/setup-python@v4
2828
with:
29-
python-version: '3.x'
30-
29+
python-version: ${{ matrix.python-version }}
3130
- name: Integration Test
3231
env:
3332
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.TEST_SERVICE_ACCOUNT_TOKEN }}

0 commit comments

Comments
 (0)