Skip to content

Commit

Permalink
chore(ci-core): revert back matrix usage as it create conflict betwee…
Browse files Browse the repository at this point in the history
…n containers
  • Loading branch information
egbakou committed Dec 17, 2023
1 parent 524e8f0 commit fb2ce4e
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,11 @@ jobs:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
framework: [ 'net8.0', 'net7.0', 'net6.0' ]
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Install .NET Core SDK
- name: Install .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
Expand All @@ -64,13 +61,13 @@ jobs:
6.0.x
- name: Run tests
run: dotnet test -c Release --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage/${{ matrix.framework }}
run: dotnet test -c Release --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage
working-directory: ./tests/DomainVerifier.Tests

- name: Code Coverage Report
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: tests/DomainVerifier.Tests/coverage/${{ matrix.framework }}/coverage.cobertura.xml
filename: tests/DomainVerifier.Tests/coverage/**/coverage.cobertura.xml
badge: true
fail_below_min: true
format: markdown
Expand Down

0 comments on commit fb2ce4e

Please sign in to comment.