File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -252,14 +252,14 @@ jobs:
252
252
cfg-file : ${{ inputs.cfg-file }}
253
253
pip-installs : ${{ inputs.pip-installs }}
254
254
255
- - name : Lint with mypy using disallow-untyped-def
256
- if : ${{ (matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true') && inputs.mypy-packages != '' && matrix.python-version != '3.13.5' }}
257
- run : mypy --python-version ${{ matrix.python-version }} --disallow-untyped-defs ${{ inputs.mypy-full-packages }}
258
-
259
255
- name : Lint with mypy
260
- if : ${{ (matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true') && inputs.mypy-packages != '' && matrix.python-version != '3.13.5' }}
256
+ if : ${{ (matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true') && inputs.mypy-packages != '' }}
261
257
run : mypy --python-version ${{ matrix.python-version }} ${{ inputs.mypy-packages }}
262
258
259
+ - name : Lint with mypy using disallow-untyped-def
260
+ if : ${{ (matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true') && inputs.mypy-full-packages != '' }}
261
+ run : mypy --python-version ${{ matrix.python-version }} --disallow-untyped-defs ${{ inputs.mypy-full-packages }}
262
+
263
263
- name : Lint with flake8
264
264
if : ${{ matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true' }}
265
265
run : flake8 ${{ inputs.flake8-packages }}
You can’t perform that action at this time.
0 commit comments