Commit d7c88ae 1 parent a14bf3b commit d7c88ae Copy full SHA for d7c88ae
File tree 1 file changed +16
-6
lines changed
1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -100,12 +100,6 @@ jobs:
100
100
python : " 3.7"
101
101
os : ubuntu-latest
102
102
tox_env : " linting,docs,doctesting"
103
- - name : " mypy-diff"
104
- if : github.event_name == 'pull'
105
- python : " 3.8"
106
- os : ubuntu-latest
107
- tox_env : " mypy-diff"
108
- skip_coverage : true
109
103
110
104
steps :
111
105
- uses : actions/checkout@v1
@@ -182,3 +176,19 @@ jobs:
182
176
run : |
183
177
sudo apt-get install pandoc
184
178
tox -e publish-gh-release-notes
179
+
180
+ mypy-diff :
181
+ if : github.event_name == 'pull_request'
182
+ runs-on : ubuntu-latest
183
+ steps :
184
+ - uses : actions/checkout@v1
185
+ - name : Set up Python
186
+ uses : actions/setup-python@v1
187
+ with :
188
+ python-version : " 3.8"
189
+ - name : Install dependencies
190
+ run : |
191
+ python -m pip install --upgrade pip
192
+ pip install --upgrade wheel setuptools tox
193
+ - name : tox -e mypy-diff
194
+ run : " tox -e ${{ matrix.tox_env }}"
You can’t perform that action at this time.
0 commit comments