Run pyright as part of the CI process

This doesn't do verifytypes yet due to a bug in Pyright
This commit is contained in:
Rapptz 2022-04-02 11:47:34 -04:00
parent 52e16573f5
commit 298bd7492c

View File

@ -41,9 +41,7 @@ jobs:
- name: Run pyright
run: |
# It is OK for the types to not pass at this stage
# We are just running it as a quick reference check
pyright || echo "Type checking did not pass"
pyright
- name: Run black
if: ${{ always() && steps.install-deps.outcome == 'success' }}