diff --git a/.github/workflows/push-pr_workflow.yml b/.github/workflows/push-pr_workflow.yml index 59404df2..9085bdab 100644 --- a/.github/workflows/push-pr_workflow.yml +++ b/.github/workflows/push-pr_workflow.yml @@ -101,6 +101,12 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Check cache + uses: actions/cache@v2 + with: + path: ${{ env.pythonLocation }} + key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }} + # - name: Cache Python dependencies # uses: actions/cache@v2 # with: @@ -172,6 +178,12 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Check cache + uses: actions/cache@v2 + with: + path: ${{ env.pythonLocation }} + key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }} + # - name: Cache Python dependencies # uses: actions/cache@v2 # with: @@ -256,6 +268,12 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Check cache + uses: actions/cache@v2 + with: + path: ${{ env.pythonLocation }} + key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }} + # - name: Cache Python dependencies # uses: actions/cache@v2 # with: