Skip to content

Commit 399070c

Browse files
committed
Try fixing GitHub Actions to use the correct Python
1 parent 23640a9 commit 399070c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9"]
9+
python-version: ["3.x", "pypy3", "3.6", "3.7", "3.8", "3.9"]
1010
steps:
1111
- name: Check out repository
1212
uses: actions/checkout@v2
1313
- name: Install Python
1414
uses: actions/setup-python@v2
1515
with:
1616
python-version: ${{ matrix.python_version }}
17+
- name: wtf
18+
run: python --version
1719
- name: Install dependencies
1820
run: python -m pip install tox
1921
- name: Run tests

0 commit comments

Comments
 (0)