Skip to content

Commit

Permalink
chore(ci-core): replaced multiple sdk versions notation by matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
egbakou committed Dec 17, 2023
1 parent 7e22a8b commit 3c87b03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ jobs:
name: Container Tests
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
dotnet: [ '8.0.x', '7.0.x', '6.0.x' ]
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Install .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
7.0.x
6.0.x
dotnet-version: ${{ matrix.dotnet }}

- name: Run tests
run: dotnet test -c Release /p:CollectCoverage=true /p:CoverletOutput=TestResult /p:CoverletOutputFormat=lcov
Expand Down

0 comments on commit 3c87b03

Please sign in to comment.