mirror of
https://github.com/beetbox/beets.git
synced 2026-01-02 05:52:50 +01:00
add mypy to actions, but allow failure
This commit is contained in:
parent
e577838631
commit
d604c7e175
1 changed files with 9 additions and 0 deletions
9
.github/workflows/ci.yaml
vendored
9
.github/workflows/ci.yaml
vendored
|
|
@ -54,6 +54,15 @@ jobs:
|
|||
run: |
|
||||
tox -vv -e py-cov
|
||||
|
||||
- name: Test latest Python version with tox and mypy
|
||||
if: matrix.python-version == '3.10'
|
||||
# continue-on-error is not ideal since it doesn't give a visible
|
||||
# warning, but there doesn't seem to be anything better:
|
||||
# https://github.com/actions/toolkit/issues/399
|
||||
continue-on-error: true
|
||||
run: |
|
||||
tox -vv -e py-mypy
|
||||
|
||||
- name: Test nightly Python version with tox
|
||||
if: matrix.python-version == '3.11-dev'
|
||||
# continue-on-error is not ideal since it doesn't give a visible
|
||||
|
|
|
|||
Loading…
Reference in a new issue