mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 05:55:13 +03:00
chore(ci): add static type checking step (#583)
This commit is contained in:
parent
9e9f531c99
commit
9ee86222a4
@ -1,4 +1,4 @@
|
||||
name: Pytest
|
||||
name: Backend Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -31,6 +31,7 @@ jobs:
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install pytest
|
||||
pip install pyright
|
||||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||
- name: Test with pytest
|
||||
env:
|
||||
@ -41,4 +42,8 @@ jobs:
|
||||
JWT_SECRET_KEY: ${{secrets.JWT_SECRET_KEY}}
|
||||
CI_TEST_API_KEY: ${{secrets.CI_TEST_API_KEY}}
|
||||
run: |
|
||||
pytest
|
||||
pytest
|
||||
|
||||
- name: Static type checking with pyright
|
||||
run: |
|
||||
pyright
|
Loading…
Reference in New Issue
Block a user