We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 171c5ff commit 8d2c291Copy full SHA for 8d2c291
.github/workflows/main.yml
@@ -18,9 +18,12 @@ jobs:
18
- uses: actions/setup-python@v3
19
with:
20
python-version: ${{ matrix.python-version }}
21
- - run: pip install -r requirements.txt
22
- - run: pip install -r test-requirements.txt
23
- - run: python setup.py develop
+ cache: 'pip'
+ - name: Install dependencies
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install -r requirements.txt
26
+ pip install -r test-requirements.txt
27
- env:
28
DETECTLANGUAGE_API_KEY: ${{ secrets.DETECTLANGUAGE_API_KEY }}
29
run: nosetests
0 commit comments