File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
build :
14
- name : Python ${{ matrix.python-version }} on ${{ matrix.architecture }}
15
- runs-on : ${{ matrix.architecture }}
14
+ name : Python ${{ matrix.python-version }} on ${{ matrix.os }}
15
+ runs-on : ${{ matrix.os }}
16
16
strategy :
17
17
matrix :
18
- architecture : [ubuntu-latest, macos-latest, windows-latest]
18
+ os : [ubuntu-latest, macos-latest, windows-latest]
19
19
python-version : [3.6, 3.7, 3.8]
20
20
21
21
steps :
22
22
- uses : actions/checkout@v2
23
23
24
- - name : Set up Python ${{ matrix.python-version }} on ${{ matrix.architecture }}
24
+ - name : Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
25
25
uses : actions/setup-python@v1
26
26
with :
27
- os : ${{ matrix.os }}
28
- python-version : ${{ matrix.python-version }}
27
+ os : ${{ matrix.os }}
28
+ python-version : ${{ matrix.python-version }}
29
29
30
30
- name : Python info
31
31
run : |
32
32
which python
33
33
python --version
34
34
35
35
- name : Install dependencies
36
- run : |
37
- pip install -e .[test]
36
+ run : pip install -e .[test]
38
37
39
38
- name : Test with pytest
40
39
run : pytest
41
40
42
41
- name : Run codecov
43
42
uses : codecov/codecov-action@v1
44
43
with :
45
- file : ./coverage.xml
46
- name : codecov-umbrella
44
+ file : ./coverage.xml
45
+ name : codecov-umbrella
You can’t perform that action at this time.
0 commit comments