From e333dd94e983e17189543b727fc870095b5a9e97 Mon Sep 17 00:00:00 2001 From: Erin Shaben Date: Mon, 3 Jun 2024 14:52:49 -0400 Subject: [PATCH] modify workflow to install deps --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30cd66b..5c2e890 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,5 +24,11 @@ jobs: path: .cache restore-keys: | mkdocs-material- - - run: pip install mkdocs-material + - name: Install pip requirements + run: | + cd moonbeam-mkdocs + # upgrade pip + pip3 install --upgrade pip setuptools==65.7.0 + # install dependencies quietly + pip3 install -r requirements.txt &> /dev/null && echo "Dependencies installed" || echo "Error while installing dependencies" - run: mkdocs gh-deploy --force \ No newline at end of file