Skip to content

Commit 3c5d91a

Browse files
authored
ci: fix python version matrix #530
1 parent eaa862d commit 3c5d91a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
node: ['3.11', '3.12']
20+
python: ['3.10', '3.11']
2121
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
2222
include:
2323
- os: ubuntu-latest
@@ -59,15 +59,15 @@ jobs:
5959

6060
- name: install dependencies
6161
run: |
62-
pip3 install . # Install from setup.py
63-
pip3 install -q pytest
62+
pip install . # Install from setup.py
63+
pip install -q pytest
6464
6565
- name: test
6666
run: |
6767
echo $PATH
6868
which nvim
6969
nvim --version
70-
python3 -m pytest
70+
python -m pytest
7171
7272
- uses: codecov/codecov-action@v3
7373
if: runner.os == 'macOS'
@@ -82,7 +82,7 @@ jobs:
8282
# after_script:
8383
# - if [ $CI_TARGET = tests ]; then
8484
# set -x;
85-
# pip3 install coverage;
85+
# pip install coverage;
8686
# coverage combine;
8787
# coverage report -m;
8888
# coverage xml;

0 commit comments

Comments
 (0)