File tree Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Original file line number Diff line number Diff line change 9
9
pull_request :
10
10
11
11
jobs :
12
- ci :
12
+ test :
13
13
runs-on : ${{ matrix.os }}
14
14
strategy :
15
15
fail-fast : false
38
38
- python :
39
39
dotted : 2.7
40
40
reactor : asyncio
41
- include :
42
- - os : ubuntu-latest
43
- python :
44
- short : 37
45
- dotted : 3.7
46
- reactor : default
47
- toxenv : linting
48
41
steps :
49
42
- uses : actions/checkout@v2
50
43
- name : Set up Python ${{ matrix.python.dotted }}
77
70
- name : Test
78
71
run : |
79
72
tox -v -e "${{ env['TOXENV'] }}"
73
+ lint :
74
+ runs-on : ubuntu-latest
75
+ strategy :
76
+ matrix :
77
+ python :
78
+ - short : 37
79
+ dotted : 3.7
80
+ steps :
81
+ - uses : actions/checkout@v2
82
+ - name : Set up Python ${{ matrix.python.dotted }}
83
+ uses : actions/setup-python@v1
84
+ with :
85
+ python-version : ${{ matrix.python.dotted }}
86
+ architecture : x64
87
+ - name : Install
88
+ run : |
89
+ pip install tox
90
+ - name : Test
91
+ run : |
92
+ tox -v -e linting
You can’t perform that action at this time.
0 commit comments