mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-11-01 18:48:14 +08:00
Add typecheck to build steps
This commit is contained in:
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
@ -21,9 +21,12 @@ jobs:
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.dev.txt
|
||||
- name: Check codestyle
|
||||
run: make format-check
|
||||
- name: Lint
|
||||
run: make lint
|
||||
run: |
|
||||
make format-check
|
||||
make lint
|
||||
- name: Typecheck
|
||||
run: |
|
||||
make typecheck
|
||||
- name: Test with pytest
|
||||
env:
|
||||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
||||
|
||||
Reference in New Issue
Block a user