Merge branch 'master' into stef-451 #825
Workflow file for this run
This file contains 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 with Tests | |
on: [push] | |
jobs: | |
build_and_test_Windows: | |
name: Build and run Tests on Windows | |
runs-on: windows-latest | |
env: | |
IsRunningOnGitHubActions: 'true' | |
UseInMemory: 'true' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
dotnet build ./src/System.Linq.Dynamic.Core/System.Linq.Dynamic.Core.csproj -c Release -p:buildType=azure-pipelines-ci | |
- name: Run Tests EFCore net8.0 | |
run: | | |
dotnet test ./test/System.Linq.Dynamic.Core.Tests/System.Linq.Dynamic.Core.Tests.csproj -c Release -p:buildType=azure-pipelines-ci | |
build_and_test_Linux: | |
name: Build and run Tests on Linux | |
runs-on: ubuntu-latest | |
env: | |
IsRunningOnGitHubActions: 'true' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
8.0.x | |
- name: Build | |
run: | | |
dotnet build ./src/System.Linq.Dynamic.Core/System.Linq.Dynamic.Core.csproj -c Release -p:buildType=azure-pipelines-ci | |
- name: Run Tests EF net8.0 | |
run: | | |
dotnet test ./test/EntityFramework.DynamicLinq.Tests/EntityFramework.DynamicLinq.Tests.csproj -c Release -f net8.0 -p:buildType=azure-pipelines-ci | |
- name: Run Tests EFCore net8.0 | |
run: | | |
dotnet test ./test/System.Linq.Dynamic.Core.Tests/System.Linq.Dynamic.Core.Tests.csproj -c Release -p:buildType=azure-pipelines-ci | |
- name: Run Tests EFCore net7.0 | |
run: | | |
dotnet test ./test/System.Linq.Dynamic.Core.Tests.Net7/System.Linq.Dynamic.Core.Tests.Net7.csproj -c Release -p:buildType=azure-pipelines-ci | |
- name: Run Tests EFCore net6.0 | |
run: | | |
dotnet test ./test/System.Linq.Dynamic.Core.Tests.Net6/System.Linq.Dynamic.Core.Tests.Net6.csproj -c Release -p:buildType=azure-pipelines-ci |