diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c1f3af87..2c8066c68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,28 +77,9 @@ jobs: with: python-version: ${{ env.PYTHON_VERSION }} - # - uses: actions/cache@v1 - # id: cache-python - # with: - # path: ~/.cache/pip - # key: ${{ runner.os }}-pip-${{ env.PYTHON_VERSION }}-${{ hashFiles('**/requirements.txt') }} - - # - if: steps.cache-python.outputs.cache-hit != 'true' - - run: pip install -r requirements.txt - - # Set configuration for repository and deploy documentation - - env: - GH_TOKEN: ${{ secrets.GH_TOKEN }} - GH_NAME: ${{ secrets.GH_NAME }} - GH_EMAIL: ${{ secrets.GH_EMAIL }} - run: | - REMOTE="https://${GH_TOKEN}@github.com/${GITHUB_REPOSITORY}" - git config --global user.name "${GH_NAME}" - git config --global user.email "${GH_EMAIL}" - git remote set-url origin ${REMOTE} - # Install theme and dependencies - run: | + pip install -r requirements.txt pip install . pip install mkdocs-minify-plugin>=0.2