Skip to content

Commit

Permalink
Manage frameworks in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aneojgurhem committed Feb 23, 2023
1 parent 9869ef3 commit b926da8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/publish-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ jobs:
strategy:
fail-fast: false
matrix:
projects:
- packages/csharp/ArmoniK.Api.Tests
- packages/csharp/ArmoniK.Api.Core.Tests
include:
- projects: packages/csharp/ArmoniK.Api.Tests
framework: net6.0
- projects: packages/csharp/ArmoniK.Api.Core.Tests
framework: net7.0
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -57,7 +59,7 @@ jobs:
- name: Run tests
run: |
cd ${{ matrix.projects }}
dotnet test -f net7.0 --logger "trx;LogFileName=test-results.trx"
dotnet test -f ${{ matrix.framework }} --logger "trx;LogFileName=test-results.trx"
- name: Test Report
uses: dorny/test-reporter@v1
Expand Down

0 comments on commit b926da8

Please sign in to comment.