Refacotr: use new Nasdaq url path (#13) #63
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: ["*"] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
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 | |
- 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: -v /home/runner/work:/__w --workdir /__w/Lean.DataSource.NasdaqDataLink/Lean.DataSource.NasdaqDataLink | |
shell: bash | |
run: | | |
# Build NasdaqDataLink | |
dotnet build ./QuantConnect.DataSource.csproj /p:Configuration=Release /v:quiet /p:WarningLevel=1 | |
# Build Tests NasdaqDataLink | |
dotnet build ./tests/Tests.csproj /p:Configuration=Release /v:quiet /p:WarningLevel=1 | |
# Run Tests NasdaqDataLink | |
dotnet test ./tests/bin/Release/net6.0/Tests.dll |