diff --git a/.github/actions/setup-project/action.yml b/.github/actions/setup-project/action.yml index 003d8bf6e..a6caa11e9 100644 --- a/.github/actions/setup-project/action.yml +++ b/.github/actions/setup-project/action.yml @@ -13,3 +13,6 @@ runs: uses: actions/setup-python@v3 with: python-version: "3.9" + - name: Install pipenv + shell: bash + run: pip install --upgrade pipenv diff --git a/Makefile b/Makefile index 7bc3da75c..e03c05e46 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ GIT_COMMIT ?= $(shell git rev-parse HEAD) .PHONY: bootstrap bootstrap: ## Set up everything to run the app - generate-version-file + make generate-version-file pipenv install ---dev createdb notification_api || true (pipenv run flask db upgrade) || true