We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b4d366 commit 00a063bCopy full SHA for 00a063b
.github/workflows/python-tests.yml
@@ -39,14 +39,20 @@ jobs:
39
- name: Lint with flake8
40
run: |
41
flake8 --ignore E501,W503 zshot/
42
- - name: Install Spacy pipeline
+ - name: Install Spacy pipeline and download models
43
44
python -m spacy download en_core_web_sm
45
python -m zshot.utils.download_models
46
- name: Test with pytest
47
48
python -m pytest --cov -v --cov-report xml:/home/runner/coverage.xml
49
timeout-minutes: 30
50
+ - name: Remove cache
51
+ uses: JesseTG/rm@v1.0.3
52
+ with:
53
+ path: |
54
+ ~/.cache/huggingface
55
+ ~/.cache/zshot
56
- name: Upload coverage to Codecov
57
uses: codecov/codecov-action@v3.1.1
58
with:
0 commit comments