Merge pull request #322 from pylast/pre-commit-cache

GHA: Fix lint cache
This commit is contained in:
Hugo van Kemenade 2020-03-04 22:36:47 +02:00 committed by GitHub
commit 0f80585d72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -24,9 +24,9 @@ jobs:
uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
key: lint-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml') }}
key: lint-pre-commit-v1-${{ hashFiles('**/.pre-commit-config.yaml') }}
restore-keys: |
lint-pre-commit-
lint-pre-commit-v1-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1

View file

@ -44,5 +44,3 @@ setup(
"Programming Language :: Python :: Implementation :: PyPy",
],
)
# End of file