From 2be71581903053bf2f53da85ec511f2adee1f67b Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Mon, 24 Mar 2025 15:00:22 -0300 Subject: [PATCH] [CONFIG] [Github Actions] Multiple .NET framework versions --- .github/workflows/dotnet.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index aed4055..10d3deb 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -21,13 +21,17 @@ jobs: fail-fast: false matrix: os: ["windows-2022", "ubuntu-24.04", "macos-14"] + dotnet-version: [8.0.x, 9.0.x] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - - name: Setup .NET + - name: Setup .NET ${{ matrix.dotnet-version }} uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: ${{ matrix.dotnet-version }} + - name: Tooling check + run: > + dotnet --version - name: Restore dependencies run: dotnet restore - name: Build