Skip to content

Commit

Permalink
modify cached files
Browse files Browse the repository at this point in the history
  • Loading branch information
ben9809 committed Mar 17, 2024
1 parent be2cb41 commit b9e71a2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python-style-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.10'
cache: 'pip'

- name: Clean up Python bytecode
run: |
find . -name "*.pyc" -delete
find . -name "__pycache__" -delete
find . -name ".pytest_cache" -type d -exec rm -r "{}" +
- name: Install dependencies
run: |
Expand Down

0 comments on commit b9e71a2

Please sign in to comment.