Changing the default HTTP timeout for 89 seconds for debug #113
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
# Make sure we can install Jupyter notebook free environments | |
name: Standalone install wo/optional deps test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
automated-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Set up Python 3.12 | |
id: setup-python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: Run test scripts | |
run: | | |
bash scripts/standalone-test.sh | |
env: | |
TRADING_STRATEGY_API_KEY: ${{ secrets.TRADING_STRATEGY_API_KEY }} |