Skip to content

Commit

Permalink
fix: must in api files
Browse files Browse the repository at this point in the history
Signed-off-by: yihong0618 <[email protected]>
  • Loading branch information
yihong0618 committed Dec 23, 2024
1 parent c34002c commit 057d2d1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ jobs:
- name: Install dependencies
run: poetry install -C api --with dev

- name: Run mypy
run: poetry run -C api mypy ./api --config-file=./api/mypy.ini

- name: Check dependencies in pyproject.toml
run: poetry run -C api bash dev/pytest/pytest_artifacts.sh
Expand All @@ -59,6 +57,12 @@ jobs:
- name: Run Tool
run: poetry run -C api bash dev/pytest/pytest_tools.sh

- name: Run mypy
run:
pushd api
poetry run -C api mypy ./api --config-file=./api/mypy.ini
popd

- name: Set up dotenvs
run: |
cp docker/.env.example docker/.env
Expand Down

0 comments on commit 057d2d1

Please sign in to comment.