Add missing local_cache argument. #1693
Workflow file for this run
This file contains hidden or 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
| name: Testing unify | |
| on: push | |
| jobs: | |
| black: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.9' | |
| - name: Install deps | |
| uses: knowsuchagency/poetry-install@v1 | |
| env: | |
| POETRY_VIRTUALENVS_CREATE: false | |
| - name: Run black check | |
| run: poetry run black --check . | |
| pytest: | |
| runs-on: ubuntu-latest | |
| environment: unify-testing | |
| timeout-minutes: 120 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.9' | |
| - name: Install deps | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install poetry | |
| poetry install --with dev | |
| - name: Run unit tests | |
| run: poetry run pytest --timeout=120 -p no:warnings -vv . | |
| env: | |
| UNIFY_KEY: ${{ secrets.USER_API_KEY }} |