From 543d8e84a94b6ce9f2d732a7ecb3de1b9e22e4ad Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Tue, 25 Nov 2025 17:16:58 -0300 Subject: [PATCH] [CONFIG] [Github Actions] tooling check task added. --- .github/workflows/dotnet-coverage.yml | 3 +++ .github/workflows/sonarcloud.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/dotnet-coverage.yml b/.github/workflows/dotnet-coverage.yml index f1a78d7..685ff28 100644 --- a/.github/workflows/dotnet-coverage.yml +++ b/.github/workflows/dotnet-coverage.yml @@ -28,6 +28,9 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: 10.0.x + - name: Tooling check + run: > + dotnet --version - name: Restore dependencies run: dotnet restore --verbosity normal - name: Build diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index 2ec5349..5f7fd10 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -17,6 +17,9 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: 10.0.x + - name: Tooling check + run: > + dotnet --version - name: Set up JDK uses: actions/setup-java@v5 with: