We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f89c148 commit ba6c0d6Copy full SHA for ba6c0d6
.github/workflows/test.yml
@@ -61,8 +61,12 @@ jobs:
61
- name: Create temp Heroku app for this PR
62
run: |
63
heroku create $APP_NAME
64
+ heroku buildpacks:set heroku/python -a $APP_NAME
65
heroku config:set API_KEY=$API_KEY --app $APP_NAME
66
+ heroku config:set STDIO_MODE_ONLY=false
67
heroku config:set REMOTE_SERVER_TYPE=$REMOTE_SERVER_TYPE --app $APP_NAME
68
+ heroku config:set WEB_CONCURRENCY=1 --app $APP_NAME
69
+ heroku ps:scale web=1 -a $APP_NAME
70
71
- name: Deploy this branch to Heroku
72
0 commit comments