Skip to content

Commit c710f02

Browse files
authored
Update code_check.yml
if there are python caches, delete them
1 parent 3edee79 commit c710f02

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/code_check.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ jobs:
3030
pip install -r requirements.txt
3131
pip install pylint
3232
33+
- name: Clean python cache
34+
run: |
35+
find . -type d -name "__pycache__" -exec rm -rf {} +
36+
3337
- name: Lint with pylint
3438
env:
3539
PYTHONPATH: ${{ github.workspace }}

0 commit comments

Comments
 (0)