We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45699bb commit 8131e63Copy full SHA for 8131e63
.github/workflows/test.yml
@@ -27,7 +27,8 @@ jobs:
27
strategy:
28
matrix:
29
# TODO - expand matrix once stable
30
- python-version: [3.6]
+ python-version:
31
+ - "3.10"
32
steps:
33
- uses: actions/checkout@v3
34
- name: Fetch and Diff PR with base from which it was cloned
@@ -36,7 +37,7 @@ jobs:
36
37
git fetch origin master "${{ github.event.pull_request.base.sha }}"
38
git diff --diff-filter=ACM --name-only "${{ github.event.pull_request.base.sha }}" "${{ github.sha }}" > "${HOME}/changed_files.txt"
39
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
40
+ uses: actions/setup-python@v4
41
with:
42
python-version: ${{ matrix.python-version }}
43
- name: Install dependencies
0 commit comments