Skip to content

Commit 2fa48a4

Browse files
committed
[spec] exclude .NET Framework tests on Ubuntu
1 parent 85940a8 commit 2fa48a4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16+
include:
17+
- os: ubuntu-latest
18+
test-framework-command: --framework net8.0
1619

1720
steps:
1821
- name: Code Checkout
@@ -30,7 +33,7 @@ jobs:
3033
run: dotnet build --no-restore -c Release
3134

3235
- name: Perform Unit Testing
33-
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"
3437

3538
- name: Create Package
3639
run: dotnet pack Simplify.Web/Simplify.Web.csproj --no-build -c Release -o ./publish

0 commit comments

Comments
 (0)