From 311efcae62205571182c5e86f12efa6c0a77086b Mon Sep 17 00:00:00 2001 From: Ricardo Carneiro Date: Sun, 8 Mar 2026 12:51:09 -0300 Subject: [PATCH] fix: deplos testes --- .github/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d4c98a9..0dd55b5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,13 +30,13 @@ jobs: ${{ runner.os }}-nuget- - name: Restore dependencies - run: dotnet restore - + run: dotnet restore QRRapidoApp.csproj + - name: Build - run: dotnet build --no-restore --configuration Release - + run: dotnet build QRRapidoApp.csproj --no-restore --configuration Release + - name: Test - run: dotnet test --no-build --configuration Release --verbosity normal --collect:"XPlat Code Coverage" + run: dotnet test QRRapidoApp.csproj --no-build --configuration Release --verbosity normal --collect:"XPlat Code Coverage" - name: Upload coverage uses: codecov/codecov-action@v3