Skip to content
This repository was archived by the owner on Jun 4, 2023. It is now read-only.

Commit 472e295

Browse files
committed
fix GHA python version setup
1 parent a1fe87e commit 472e295

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/main-ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@ jobs:
2222
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.7']
2323

2424
steps:
25+
- name: Checkout source
2526
- uses: actions/checkout@v2
26-
# - name: Set up Python
27-
# uses: actions/setup-python@v2
28-
# with:
29-
# python-version: 3.9
27+
- name: Set up Python
28+
uses: actions/setup-python@v2
29+
with:
30+
python-version: ${{ matrix.python-version }}
3031
- name: Install dependencies
3132
run: |
3233
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)