Update CHANGELOG.md #1056
Workflow file for this run
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 Pull Requests (Xpress in latest Ubuntu) | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- ready_for_review | |
branches: | |
- master | |
- develop | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
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 v3 (stable) | |
run: docker exec reopt_api-celery-1 python manage.py test reoptjl.test -v 2 --no-input |