update version #256
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 Gym | |
uses: actions/checkout@v2 | |
with: | |
path: gym | |
persist-credentials: false | |
- name: Run Tests | |
run: | | |
cd gym | |
mkdir .ivy | |
touch .ivy/key.pem | |
echo -n ${{ secrets.USER_API_KEY }} > .ivy/key.pem | |
docker run --rm -v `pwd`:/gym unifyai/gym:latest python3 -m pytest ivy_gym_tests/ |