Remove some debugging code that didn't work anyway #1843
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: Build and test RTCV | |
| on: [push, pull_request] | |
| jobs: | |
| buildAndTest: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Setup MSBuild.exe | |
| uses: microsoft/setup-msbuild@v1.1.3 | |
| - name: Restore packages | |
| run: msbuild RTCV.sln /t:restore | |
| - name: Build with MSBuild | |
| run: msbuild RTCV.sln | |
| - name: Run tests | |
| run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover | |
| - name: Report coverage to codecov | |
| uses: codecov/codecov-action@v1.0.13 | |
| with: | |
| file: Tests/coverage.opencover.xml |