NIGHTLY_LTL #846
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_LTL | |
on: | |
schedule: | |
- cron: "0 2 * * 1-5" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: docker://barksim/bark:latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setting up virtual environment | |
run: virtualenv -p python3 ./bark/python_wrapper/venv --system-site-packages | |
- name: Getting into venv | |
run: . ./bark/python_wrapper/venv/bin/activate | |
- name: Runing bazel test | |
run: bazel test //... --define ltl_rules=true |