File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 17
17
strategy :
18
18
fail-fast : false
19
19
matrix :
20
- node : ['3.11 ', '3.12 ']
20
+ python : ['3.10 ', '3.11 ']
21
21
os : ['ubuntu-latest', 'macos-latest', 'windows-latest']
22
22
include :
23
23
- os : ubuntu-latest
@@ -59,15 +59,15 @@ jobs:
59
59
60
60
- name : install dependencies
61
61
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
64
64
65
65
- name : test
66
66
run : |
67
67
echo $PATH
68
68
which nvim
69
69
nvim --version
70
- python3 -m pytest
70
+ python -m pytest
71
71
72
72
- uses : codecov/codecov-action@v3
73
73
if : runner.os == 'macOS'
82
82
# after_script:
83
83
# - if [ $CI_TARGET = tests ]; then
84
84
# set -x;
85
- # pip3 install coverage;
85
+ # pip install coverage;
86
86
# coverage combine;
87
87
# coverage report -m;
88
88
# coverage xml;
You can’t perform that action at this time.
0 commit comments