Run Tests! #3369
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: Run Tests! | |
| on: | |
| schedule: | |
| - cron: "0 6 * * *" | |
| jobs: | |
| tests: | |
| name: run pytest inside sb3 docker container | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: build container # use docker buildkit for caching? | |
| run: bash docker/bin/build_container.sh | |
| - name: Run Tests | |
| run: bash docker/bin/test.sh |