@@ -33,28 +33,16 @@ jobs:
|
|||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: dotnet restore --disable-parallel
|
run: dotnet restore --disable-parallel
|
||||||
|
|
||||||
- name: Build .NET 10.0
|
- name: Build
|
||||||
run: dotnet build --no-restore --framework net10.0 --configuration Release ./Raliway.Tests/Raliway.Tests.csproj
|
run: dotnet build --configuration Release --no-restore
|
||||||
|
|
||||||
- name: Build .NET 9.0
|
- name: Test
|
||||||
run: dotnet build --no-restore --framework net9.0 --configuration Release ./Raliway.Tests/Raliway.Tests.csproj
|
run: dotnet test --configuration Release --no-build --verbosity normal --report-xunit-trx
|
||||||
|
|
||||||
- name: Build .NET 8.0
|
|
||||||
run: dotnet build --no-restore --framework net8.0 --configuration Release ./Raliway.Tests/Raliway.Tests.csproj
|
|
||||||
|
|
||||||
- name: Test .NET 10.0
|
|
||||||
run: dotnet run --no-build --framework net10.0 --configuration Release --project ./Raliway.Tests/Raliway.Tests.csproj -- -trx TestResults/results-net10.trx
|
|
||||||
|
|
||||||
- name: Test .NET 9.0
|
|
||||||
run: dotnet run --no-build --framework net9.0 --configuration Release --project ./Raliway.Tests/Raliway.Tests.csproj -- -trx TestResults/results-net9.trx
|
|
||||||
|
|
||||||
- name: Test .NET 8.0
|
|
||||||
run: dotnet run --no-build --framework net8.0 --configuration Release --project ./Raliway.Tests/Raliway.Tests.csproj -- -trx TestResults/results-net8.trx
|
|
||||||
|
|
||||||
- name: Upload dotnet test results
|
- name: Upload dotnet test results
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: test-results
|
name: test-results
|
||||||
path: TestResults
|
path: tests/**/TestResults/**/*.trx
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
retention-days: 30
|
retention-days: 3
|
||||||
|
|||||||
Reference in New Issue
Block a user