We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85940a8 commit 2fa48a4Copy full SHA for 2fa48a4
.github/workflows/build.yml
@@ -13,6 +13,9 @@ jobs:
13
fail-fast: false
14
matrix:
15
os: [ubuntu-latest, windows-latest]
16
+ include:
17
+ - os: ubuntu-latest
18
+ test-framework-command: --framework net8.0
19
20
steps:
21
- name: Code Checkout
@@ -30,7 +33,7 @@ jobs:
30
33
run: dotnet build --no-restore -c Release
31
34
32
35
- name: Perform Unit Testing
- run: dotnet test --no-build -c Release --verbosity normal --filter "TestCategory!=Benchmark"
36
+ run: dotnet test --no-build -c Release ${{ matrix.test-framework-command }} --verbosity normal --filter "TestCategory!=Benchmark"
37
38
- name: Create Package
39
run: dotnet pack Simplify.Web/Simplify.Web.csproj --no-build -c Release -o ./publish
0 commit comments