Skip to content

Fix commit d825f01f043d7d2942c5248ea3f6069a99d082ea #61

Fix commit d825f01f043d7d2942c5248ea3f6069a99d082ea

Fix commit d825f01f043d7d2942c5248ea3f6069a99d082ea #61

Workflow file for this run

name: .NET Tests
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
9.0.x
- name: Build StockSharp.sln (Windows only)
if: matrix.os == 'windows-latest'
run: dotnet build StockSharp.sln --configuration Release
- name: Build
run: dotnet build StockSharp_Tests.sln --configuration Release
- name: Run tests
run: dotnet test StockSharp_Tests.sln --no-build --configuration Release