changed a pre-commit.yml file to use modify cache file. #1695
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pre-commit QA | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
# Install pre-commit package | |
- name: Install pre-commit | |
run: | | |
python -m pip install --upgrade pip | |
pip install pre-commit | |
# Cache step to reuse pre-commit cache | |
- name: Cache Pre-commit | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pre-commit | |
key: ${{ runner.os }}-pre-commit-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-pre-commit- | |
# Remove pre-existing cache to avoid issues | |
- name: Clear pre-commit cache | |
run: rm -rf ~/.cache/pre-commit | |
# Install pre-commit hooks (this will create necessary cache files) | |
- name: Install pre-commit hooks | |
run: pre-commit install | |
# Step to replace 'python_venv' with 'python' in .pre-commit-hooks.yaml | |
- name: Fix pre-commit hook language | |
run: | | |
echo "Fixing pre-commit hook language..." | |
find ~/.cache/pre-commit/ -type f -name '.pre-commit-hooks.yaml' -exec sed -i 's/python_venv/python/g' {} + | |
# Run pre-commit action | |
- name: Run pre-commit checks | |
uses: pre-commit/action@v3.0.0 | |
with: | |
all_files: true |