From ec71655c31876bdf46e33bb086d613b40add3ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20M=C3=A9ndez=20Gort?= Date: Sat, 7 Mar 2026 16:57:35 +0100 Subject: [PATCH] ci: use setup-dotnet for test workflow --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 20d2209..0c97d95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,12 +5,15 @@ on: [push, pull_request] jobs: build: runs-on: ubuntu-latest - container: - image: mcr.microsoft.com/dotnet/sdk:10.0 steps: - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 10.0.x + - name: Run tests run: | dotnet test