update workflows (#73)

* modify workflows to fit into one file, fix pyright workflow

* remove redundant pip install

* add check flag to black

* use psf/black for black checker
This commit is contained in:
Tom
2021-09-21 14:51:46 -07:00
committed by GitHub
parent 02c6b07834
commit 0637a628ca
2 changed files with 14 additions and 27 deletions

View File

@ -3,7 +3,7 @@ name: CI
on: [push, pull_request]
jobs:
lint:
pyright:
runs-on: ubuntu-latest
steps:
- name: checkout
@ -22,5 +22,17 @@ jobs:
- name: Run type checking
run: |
npm install -g pyright
pip install -r requirements.txt
pip install .
pyright --lib --verifytypes discord --ignoreexternal
black:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run linter
uses: psf/black@stable
with:
options: "--line-length 120 --check"
src: "./discord"