From 44f5e1c7398e1dd9d86e8e4833d17b4fdf9b72ef Mon Sep 17 00:00:00 2001 From: Andrii Andreiev <129078694+AndriiAndreiev@users.noreply.github.com> Date: Thu, 24 Oct 2024 17:26:21 +0300 Subject: [PATCH] chore(dotnet): update workflow (6.x and 8.x versions) --- .github/workflows/dotnet.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index a13114495..f33283a49 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -23,15 +23,21 @@ jobs: if: always() run: docker compose down - build: + build-dotnet: runs-on: ubuntu-latest defaults: run: working-directory: packages/dotnet + strategy: + matrix: + dotnet-version: + - 6.x + - 8.x + steps: - uses: actions/checkout@v4 - uses: actions/setup-dotnet@v4 - # with: - # dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel + with: + dotnet-version: ${{ matrix.dotnet-version }} - run: make build