Fixed checks.yml hashFiles not using the correct glob pattern

This project requirements files are named .txt and .dev
This commit is contained in:
evandrocoan 2020-03-27 17:13:24 -03:00
parent 1962456821
commit 000c4c6428

View file

@ -97,7 +97,7 @@ jobs:
uses: actions/cache@v1
with:
path: ${{ github.workspace }}${{ matrix.SEP }}pyenv
key: ${{ runner.os }}-pyenv-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/Makefile') }}-14-
key: ${{ runner.os }}-pyenv-${{ hashFiles('**/requirements.*') }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/Makefile') }}-14-
- name: Cache pip wheels
if: matrix.BUILD_TYPE == 'build'