Skip to content

Commit 8131e63

Browse files
authored
build: switch to python 3.10 in tests (#1054)
1 parent 45699bb commit 8131e63

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
strategy:
2828
matrix:
2929
# TODO - expand matrix once stable
30-
python-version: [3.6]
30+
python-version:
31+
- "3.10"
3132
steps:
3233
- uses: actions/checkout@v3
3334
- name: Fetch and Diff PR with base from which it was cloned
@@ -36,7 +37,7 @@ jobs:
3637
git fetch origin master "${{ github.event.pull_request.base.sha }}"
3738
git diff --diff-filter=ACM --name-only "${{ github.event.pull_request.base.sha }}" "${{ github.sha }}" > "${HOME}/changed_files.txt"
3839
- name: Set up Python ${{ matrix.python-version }}
39-
uses: actions/setup-python@v2
40+
uses: actions/setup-python@v4
4041
with:
4142
python-version: ${{ matrix.python-version }}
4243
- name: Install dependencies

0 commit comments

Comments
 (0)