Add Complex_Test #274
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: Test & Coverage | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup .NET 5 SDK | |
| uses: actions/[email protected] | |
| with: | |
| dotnet-version: 5.0.x | |
| - name: Setup .NET 6 SDK | |
| uses: actions/[email protected] | |
| with: | |
| dotnet-version: 6.0.x | |
| - name: Restore dependencies | |
| working-directory: ./src | |
| run: dotnet restore | |
| - name: Build | |
| working-directory: ./src | |
| run: dotnet build --no-restore /p:ContinuousIntegrationBuild=true | |
| - name: Test | |
| working-directory: ./src | |
| run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover | |
| - name: Codecov | |
| uses: codecov/[email protected] |