Fix commit d825f01f043d7d2942c5248ea3f6069a99d082ea #61
This file contains hidden or 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: .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 |