Skip to content

refactor:test: increase increment/decrement price #22

refactor:test: increase increment/decrement price

refactor:test: increase increment/decrement price #22

Workflow file for this run

name: Trade Station Build & Test
on:
push:
branches: ["*"]
jobs:
build:
runs-on: ubuntu-20.04
env:
QC_TRADE_STATION_API_KEY: ${{ secrets.QC_TRADE_STATION_API_KEY }}
QC_TRADE_STATION_API_SECRET: ${{ secrets.QC_TRADE_STATION_API_SECRET }}
QC_TRADE_STATION_ACCOUNT_TYPE: ${{ secrets.QC_TRADE_STATION_ACCOUNT_TYPE }}
QC_TRADE_STATION_REFRESH_TOKEN: ${{ secrets.QC_TRADE_STATION_REFRESH_TOKEN }}
QC_JOB_USER_ID: ${{ secrets.QC_JOB_USER_ID }}
QC_API_ACCESS_TOKEN: ${{ secrets.QC_API_ACCESS_TOKEN }}
QC_JOB_ORGANIZATION_ID: ${{ secrets.QC_JOB_ORGANIZATION_ID }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Free space
run: df -h && sudo rm -rf /usr/local/lib/android && sudo rm -rf /opt/ghc && rm -rf /opt/hostedtoolcache* && df -h
- uses: addnab/docker-run-action@v3
with:
image: quantconnect/lean:foundation
options: --workdir /__w/Lean.Brokerages.TradeStation/Lean.Brokerages.TradeStation -v /home/runner/work:/__w -e QC_TRADE_STATION_API_KEY=${{ env.QC_TRADE_STATION_API_KEY }} -e QC_TRADE_STATION_API_SECRET=${{ env.QC_TRADE_STATION_API_SECRET }} -e QC_TRADE_STATION_ACCOUNT_TYPE=${{ env.QC_TRADE_STATION_ACCOUNT_TYPE }} -e QC_TRADE_STATION_REFRESH_TOKEN=${{ env.QC_TRADE_STATION_REFRESH_TOKEN }} -e QC_JOB_USER_ID=${{ env.QC_JOB_USER_ID }} -e QC_API_ACCESS_TOKEN=${{ env.QC_API_ACCESS_TOKEN }} -e QC_JOB_ORGANIZATION_ID=${{ env.QC_JOB_ORGANIZATION_ID }}
- 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: Build Trade Station Solution
run: dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.TradeStationBrokerage.sln
- name: Run Trade Station Tests
run: dotnet test ./QuantConnect.TradeStationBrokerage.Tests/bin/Release/QuantConnect.Brokerages.TradeStation.Tests.dll