nightly-tests #360
Workflow file for this run
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
name: nightly-tests | |
on: | |
schedule: | |
# Runs at 00:00 UTC every day | |
- cron: '0 0 * * *' | |
jobs: | |
run-nightly-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️Ivy Models | |
uses: actions/checkout@v2 | |
with: | |
lfs: true | |
path: models | |
persist-credentials: false | |
- name: Run Tests | |
run: | | |
cd models | |
docker run --rm -v `pwd`:/models unifyai/models:latest python3 -m pytest ivy_models_tests |