Skip to content

Commit 0a9cb5d

Browse files
committed
master: fix python versions for ci 2
1 parent 2c5a043 commit 0a9cb5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/code_checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ jobs:
66
code_checks:
77
strategy:
88
matrix:
9-
pyver: [ 3.7, 3.8, 3.9 ]
9+
pyver: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
1010
os: [ ubuntu, macos, windows ]
1111
fail-fast: true
1212
runs-on: ${{ matrix.os }}-latest
1313
timeout-minutes: 5
1414
steps:
1515
- name: Set up Python ${{ matrix.pyver }}
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v2
1717
with:
1818
python-version: ${{ matrix.pyver }}
1919
- name: Checkout

0 commit comments

Comments
 (0)