Skip to content

Commit

Permalink
Add uvicorn server dep to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
recalcitrantsupplant committed Sep 13, 2024
1 parent eed6c28 commit 0ea4117
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on_pr_to_main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# install your root project, if required
#----------------------------------------------
- name: Install project
run: poetry install --no-interaction
run: poetry install --no-interaction --extras "server"
#----------------------------------------------
# run test suite
#----------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_push_to_feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# install your root project, if required
#----------------------------------------------
- name: Install project
run: poetry install --no-interaction
run: poetry install --no-interaction --extras "server"
#----------------------------------------------
# run test suite
#----------------------------------------------
Expand Down

0 comments on commit 0ea4117

Please sign in to comment.