From 0d42bf2ca9838f39201e8e5960e94a05f4cc48d6 Mon Sep 17 00:00:00 2001 From: Mark Meredith Date: Tue, 24 Nov 2020 16:12:19 -0500 Subject: [PATCH] Install deps --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a78f9e..5a9d80a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,11 +13,15 @@ jobs: runs-on: ubuntu-latest steps: - # Checks out a copy of your repository on the ubuntu-latest machine + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install sphinx sphinx-rtd-theme + - name: Checkout code uses: actions/checkout@v2 - # Runs the Super-Linter action - name: Build MFiX-Exa HTML manual run: make -C docs env: -- GitLab