Built-in Tests for Push (open source solvers in latest Ubuntu) #3916
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: Built-in Tests for Push (Xpress in Ubuntu 18.04) | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Decrypt | |
env: | |
TRANSCRYPT_PASSWORD: ${{ secrets.TRANSCRYPT_PASSWORD }} | |
run: ./.github/scripts/decrypt.sh | |
- name: Make keys.py | |
env: | |
NREL_DEV_API_KEY: ${{ secrets.NREL_DEV_API_KEY }} | |
run: ./.github/scripts/make_keys.py.sh | |
- name: Build containers | |
run: docker-compose up -d | |
- name: Check running containers | |
run: docker ps -a | |
- name: Wait for julia_api | |
uses: jakejarvis/wait-action@master | |
with: | |
time: '150s' | |
- name: test | |
run: docker exec reopt_lite_api_celery_1 python manage.py test -v 2 --failfast --no-input |