diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 29ffdcb..2a916c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/Makefile b/Makefile index 65f2952..67b5638 100644 --- a/Makefile +++ b/Makefile @@ -77,4 +77,7 @@ start_detached: docker compose up --build -d upgrade: - . .venv/bin/activate; pip-upgrade \ No newline at end of file + . .venv/bin/activate; pip-upgrade + +download_models: + . .venv/bin/activate; python src/download_models.py