Skip to content

Commit

Permalink
test against net7.0 and netstandard2.0 frameworks
Browse files Browse the repository at this point in the history
Signed-off-by: David Hernando <[email protected]>
  • Loading branch information
davidatwhiletrue committed Apr 12, 2024
1 parent ab81ba4 commit 9800e2d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/integration-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ jobs:
# The type of runner that the job will run on
runs-on: ubuntu-latest

strategy:
matrix:
include:
- name: net7.0
framework: net7.0
- name: netstandard2.0
framework: netstandard2.0

# Service containers to run with `runner-job`
services:
# Label used to access the service container
Expand Down Expand Up @@ -37,4 +45,4 @@ jobs:
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --settings Casper.Network.SDK.Test/test.runsettings --filter="TestCategory=NCTL"
run: TEST_FRAMEWORK=${{ matrix.framework }} dotnet test --no-build --verbosity normal --settings Casper.Network.SDK.Test/test.runsettings --filter="TestCategory=NCTL"

0 comments on commit 9800e2d

Please sign in to comment.