Skip to content

Commit

Permalink
Download models on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-piles committed Jan 16, 2025
1 parent 00544b7 commit 2c6f628
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: make check_format

- name: Download models
run: python src/download_models.py
run: make download_models

- name: Start service
run: make start_detached
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,7 @@ start_detached:
docker compose up --build -d

upgrade:
. .venv/bin/activate; pip-upgrade
. .venv/bin/activate; pip-upgrade

download_models:
. .venv/bin/activate; python src/download_models.py

0 comments on commit 2c6f628

Please sign in to comment.