Change lets-unify.ai
reference to unify.ai
#329
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: [push, pull_request] | |
jobs: | |
run-nightly-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️Ivy Vision | |
uses: actions/checkout@v2 | |
with: | |
path: vision | |
persist-credentials: false | |
- name: Run Tests | |
run: | | |
cd vision | |
mkdir .ivy | |
touch .ivy/key.pem | |
echo -n ${{ secrets.USER_API_KEY }} > .ivy/key.pem | |
docker run --rm -v `pwd`:/vision unifyai/vision:latest python3 -m pytest ivy_vision_tests/ |