ConnectionContextExtensions: ComplexType #9
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
| name: .Net Test ConnectionExtensions with Discriminator Enabled | |
| on: | |
| push: | |
| paths: | |
| - 'src/**' | |
| pull_request: | |
| paths: | |
| - 'src/**' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| defaults: | |
| run: | |
| working-directory: src | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 8.0.100 | |
| - name: Tests | |
| run: dotnet test EntityFrameworkCore.SqlServer.SimpleBulks.Tests/EntityFrameworkCore.SqlServer.SimpleBulks.Tests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura | |
| - name: ConnectionExtensionsTests | |
| run: dotnet test EntityFrameworkCore.SqlServer.SimpleBulks.ConnectionExtensionsTests/EntityFrameworkCore.SqlServer.SimpleBulks.ConnectionExtensionsTests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura | |
| env: | |
| DISCRIMINATOR: true |