Bump django from 4.0.7 to 4.1.10 #3900
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 latest Ubuntu) | |
on: | |
push: | |
paths-ignore: | |
- README.md | |
- CHANGELOG.md | |
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 | |
run: docker exec reopt_api_celery_1 python manage.py test -v 2 --failfast --no-input |