Skip to content

fix(cache): fix composite invalidation and cleanup logic #3

fix(cache): fix composite invalidation and cleanup logic

fix(cache): fix composite invalidation and cleanup logic #3

Workflow file for this run

name: Pre-commit checks
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files