From 154c4b8b1871cd2ea8b376ebca65fa94bb79d48e Mon Sep 17 00:00:00 2001 From: Difegue Date: Sun, 3 Oct 2021 21:16:52 +0200 Subject: [PATCH] Disable tests on Actions for now --- .github/workflows/build-and-test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index b681806..885ebf2 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -31,18 +31,18 @@ jobs: working-directory: ./Sources run: | msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration - + # Build package and upload to github packages - name: Build package working-directory: ./Sources run: | dotnet nuget add source --username Difegue --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/Difegue/index.json" dotnet build $env:Solution_Name --configuration $env:Configuration - dotnet pack --configuration $env:Configuration -o ./ + dotnet pack --configuration $env:Configuration -o ./ dotnet nuget push *.nupkg --api-key ${{ secrets.GITHUB_TOKEN }} --source "github" # Execute all unit tests in the solution - - name: Execute unit tests - working-directory: ./Sources - run: dotnet test + #- name: Execute unit tests + # working-directory: ./Sources + # run: dotnet test