Merge pull request #3499 from abhisheklomsh/patch-1 #2301
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
HF_HOME: ./cache/transformers | |
FLAIR_CACHE_ROOT: ./cache/flair | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
id: setup-python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install Torch cpu | |
run: pip install torch --index-url https://download.pytorch.org/whl/cpu | |
- name: Install Flair dependencies | |
run: pip install -e . | |
- name: Install unittest dependencies | |
run: pip install -r requirements-dev.txt | |
- name: Show installed dependencies | |
run: pip freeze | |
- name: Cache downloaded models/datasets | |
uses: actions/cache@v3 | |
with: | |
path: ./cache | |
key: cache-v1.1 | |
- name: Run tests | |
run: | | |
python -c 'import flair' | |
pytest --runintegration -vv |