refactor: get GroupCached Order use Lean extension #216
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: Build & Test | |
on: | |
push: | |
branches: ['*'] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Free space | |
run: df -h && rm -rf /opt/hostedtoolcache* && df -h | |
- name: Checkout Lean Same Branch | |
id: lean-same-branch | |
uses: actions/checkout@v2 | |
continue-on-error: true | |
with: | |
ref: ${{ github.ref }} | |
repository: QuantConnect/Lean | |
path: Lean | |
- name: Checkout Lean Master | |
if: steps.lean-same-branch.outcome != 'success' | |
uses: actions/checkout@v2 | |
with: | |
repository: QuantConnect/Lean | |
path: Lean | |
- name: Move Lean | |
run: mv Lean ../Lean | |
- name: Run Image | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: quantconnect/lean:foundation | |
options: --workdir /__w/Lean.Brokerages.InteractiveBrokers/Lean.Brokerages.InteractiveBrokers -v /home/runner/work:/__w -e QC_IB_ACCOUNT=${{ secrets.QC_IB_ACCOUNT }} -e QC_IB_USER_NAME=${{ secrets.QC_IB_USER_NAME }} -e QC_IB_PASSWORD=${{ secrets.QC_IB_PASSWORD }} -e QC_IB_TRADING_MODE=${{ secrets.QC_IB_TRADING_MODE }} -e QC_IB_AGENT_DESCRIPTION=${{ secrets.QC_IB_AGENT_DESCRIPTION }} -e QC_IB_TWS_DIR=${{ secrets.QC_IB_TWS_DIR }} -e QC_IB_ENABLE_DELAYED_STREAMING_DATA=${{ secrets.QC_IB_ENABLE_DELAYED_STREAMING_DATA }} -e QC_IB_HOST=${{ secrets.QC_IB_HOST }} -e QC_JOB_USER_ID=${{ secrets.JOB_USER_ID }} -e QC_API_ACCESS_TOKEN=${{ secrets.API_ACCESS_TOKEN }} -e JOB_ORGANIZATION_ID=${{ secrets.JOB_ORGANIZATION_ID }} | |
shell: bash | |
run: | | |
# Build | |
dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.InteractiveBrokersBrokerage.sln | |
# Run Tests | |
dotnet test ./QuantConnect.InteractiveBrokersBrokerage.Tests/bin/Release/QuantConnect.Brokerages.InteractiveBrokers.Tests.dll |