[ECO-4285] Fix build system #445
Workflow file for this run
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
| # WORKFLOW DISABLED - Set if: false on all jobs | |
| name: "Unit and Integration Test: Windows (NetFramework)" | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| check: | |
| if: false # Workflow disabled | |
| runs-on: windows-latest | |
| env: | |
| DOTNET_NOLOGO: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Download dotnet framework | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: | | |
| 7.0.408 | |
| - name: Download dotnet build-script tools | |
| run: dotnet tool restore | |
| - name: Unit tests | |
| run: ./build-cake.cmd --target=Test.NetFramework.Unit.WithRetry | |
| - name: Integration tests | |
| run: ./build-cake.cmd --target=Test.NetFramework.Integration.WithRetry |