File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
strategy :
7
7
matrix :
8
8
os : [ubuntu-latest]
9
- # os: [ubuntu-latest, macos-latest, windows-latest]
10
9
python-version : ["3.8", "3.x"]
11
10
max-parallel : 6
12
11
13
12
steps :
14
13
- name : Checkout repository
15
14
uses : actions/checkout@v4
16
15
with :
17
- submodules : ' true'
16
+ submodules : true
18
17
- name : Set up Python ${{ matrix.python-version }}
19
- uses : actions/setup-python@v5
18
+ # uses: actions/setup-python@v5
19
+ uses : actions/setup-node@v2
20
20
with :
21
21
python-version : ${{ matrix.python-version }}
22
22
- name : Display Python version
23
23
run : python -c "import sys; print(sys.version)"
24
24
- name : Install packages
25
25
run : |
26
26
python -m pip install --upgrade pip
27
+ pip install .
27
28
pip install tox
28
29
pip install coveralls
29
- pip install .
30
30
- name : Run tests
31
31
run : tox
32
32
- name : Report test coverage
You can’t perform that action at this time.
0 commit comments