From 0ab616450c61ae51c9932f6d3a03b0784ee93455 Mon Sep 17 00:00:00 2001 From: Moritz Kern <92092328+Moritz-Alexander-Kern@users.noreply.github.com> Date: Fri, 28 Jan 2022 15:23:00 +0100 Subject: [PATCH] Housekeeping CI Github actions (#42) * removed environment.yml from cache key-hash and fixed comments Co-authored-by: Michael Denker --- .github/workflows/CI_actions.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI_actions.yml b/.github/workflows/CI_actions.yml index c942b06..c488eaf 100644 --- a/.github/workflows/CI_actions.yml +++ b/.github/workflows/CI_actions.yml @@ -1,7 +1,8 @@ # This workflow will setup GitHub-hosted runners and install the required dependencies for viziphant documentation. -# On a pull requests and on pushes to master it will build and create the documentation . +# On pull requests and on pushes to master it will build the documentation . -name: Viziphant-tests + +name: tests # define events that trigger workflow 'Viziphant-tests' on: # run on pull requests to master branch @@ -48,7 +49,8 @@ jobs: with: path: ~/.cache/pip # Look to see if there is a cache hit for the corresponding requirements files - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-docs.txt') }}-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/environment.yml') }}-${{ steps.date.outputs.date }} + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-docs.txt') }}-${{ hashFiles('**/requirements.txt') }}-${{ steps.date.outputs.date }} + - name: Install dependencies run: |