Skip to content

Merge pull request #33 from jhonabreul/refactor-subscription-validation #71

Merge pull request #33 from jhonabreul/refactor-subscription-validation

Merge pull request #33 from jhonabreul/refactor-subscription-validation #71

Workflow file for this run

name: Build & Test
on:
push:
branches: ['*']
jobs:
build:
runs-on: ubuntu-20.04
env:
QC_BINANCE_API_KEY: ${{ secrets.QC_BINANCE_API_KEY }}
QC_BINANCE_API_SECRET: ${{ secrets.QC_BINANCE_API_SECRET }}
QC_BINANCEUS_API_KEY: ${{ secrets.QC_BINANCEUS_API_KEY }}
QC_BINANCEUS_API_SECRET: ${{ secrets.QC_BINANCEUS_API_SECRET }}
QC_JOB_USER_ID: ${{ secrets.JOB_USER_ID }}
QC_API_ACCESS_TOKEN: ${{ secrets.API_ACCESS_TOKEN }}
QC_JOB_ORGANIZATION_ID: ${{ secrets.JOB_ORGANIZATION_ID }}
container:
image: quantconnect/lean:foundation
steps:
- uses: actions/checkout@v2
- 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
run: dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.BinanceBrokerage.sln
- name: Run Tests
run: dotnet test ./QuantConnect.BinanceBrokerage.Tests/bin/Release/QuantConnect.BinanceBrokerage.Tests.dll