Browse Source

Use pyright CI action and remove --verbose from black

pull/10109/head
Rapptz 3 years ago
committed by dolfies
parent
commit
a7849b25f3
  1. 15
      .github/workflows/lint.yml

15
.github/workflows/lint.yml

@ -30,15 +30,14 @@ jobs:
with: with:
node-version: '16' node-version: '16'
- name: Install pyright - name: Run Pyright
run: | uses: jakebailey/pyright-action@v1
npm install -g [email protected] with:
version: '1.1.235'
- name: Run pyright warnings: false
run: | no-comments: ${{ matrix.python-version != '3.x' }}
pyright
- name: Run black - name: Run black
if: ${{ always() && steps.install-deps.outcome == 'success' }} if: ${{ always() && steps.install-deps.outcome == 'success' }}
run: | run: |
black --check --verbose discord examples black --check discord examples

Loading…
Cancel
Save