Skip to content

Create wolverine.json #44

Create wolverine.json

Create wolverine.json #44

Workflow file for this run

name: Build & Test
on:
push:
branches: ['*']
jobs:
build:
runs-on: ubuntu-20.04
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.Wolverine.sln
- name: Run Tests
run: dotnet test ./QuantConnect.Wolverine.Tests/bin/Release/QuantConnect.Wolverine.Tests.dll