Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
nkhadka21 committed Nov 12, 2024
1 parent 2a39d82 commit 6e8676b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
python -m pip install --upgrade pip
pip install pre-commit
# Install pre-commit hooks (this will create the necessary cache directories)
- name: Install pre-commit hooks
run: pre-commit install

# Step to fix 'python_venv' language to 'python' in .pre-commit-hooks.yaml
- name: Fix 'python_venv' language to 'python' in .pre-commit-hooks.yaml
run: |
echo "Fixing pre-commit hook language..."
# Modify the cached pre-commit-hooks.yaml files before installation
# Now that pre-commit hooks are installed, modify the cached .pre-commit-hooks.yaml files
find ~/.cache/pre-commit/ -type f -name '.pre-commit-hooks.yaml' -exec sed -i 's/python_venv/python/g' {} +
# Install pre-commit hooks after fixing language key
- name: Install pre-commit hooks
run: pre-commit install

# Run pre-commit action
- name: Run pre-commit checks
uses: pre-commit/[email protected]
Expand Down

0 comments on commit 6e8676b

Please sign in to comment.