File tree Expand file tree Collapse file tree 2 files changed +22
-40
lines changed Expand file tree Collapse file tree 2 files changed +22
-40
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -163,6 +163,28 @@ jobs:
163
163
path : test-results.xml
164
164
if : ${{ always() }}
165
165
166
+ checks :
167
+ runs-on : ' ubuntu-latest'
168
+ continue-on-error : true
169
+ strategy :
170
+ matrix :
171
+ check : ['style', 'doctest', 'typecheck']
172
+
173
+ steps :
174
+ - uses : actions/checkout@v3
175
+ - name : Set up Python ${{ matrix.python-version }}
176
+ uses : actions/setup-python@v4
177
+ with :
178
+ python-version : 3
179
+ - name : Display Python version
180
+ run : python -c "import sys; print(sys.version)"
181
+ - name : Show tox config
182
+ run : pipx run tox c
183
+ - name : Show tox config (this call)
184
+ run : pipx run tox c -e ${{ matrix.check }}
185
+ - name : Run check
186
+ run : pipx run tox -e ${{ matrix.check }}
187
+
166
188
publish :
167
189
runs-on : ubuntu-latest
168
190
environment : " Package deployment"
You can’t perform that action at this time.
0 commit comments