Merge pull request #122 from QuantStrategyLab/fix/gateway-watcher-fai… #288
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Run shell tests | |
| run: | | |
| set -euo pipefail | |
| bash tests/test_install_2fa_bot_watcher.sh | |
| bash tests/test_wait_for_ib_gateway_ready.sh | |
| bash tests/test_workflow_shared_config.sh | |
| bash tests/test_docker_compose_ports.sh | |
| docker-build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Build gateway image without runtime startup | |
| run: docker build --pull --tag ibkr-gateway-manager:ci . |