From af6273a8cb720ab8a8b4efe4646b7d4404e4d6f8 Mon Sep 17 00:00:00 2001 From: Charlie Kindel Date: Wed, 20 May 2020 21:19:08 -0600 Subject: [PATCH] commented yml until we resolve netstandard2.1 build debate --- .github/workflows/dotnetcore.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index f734ea7b5..fe44e5fb5 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -11,15 +11,16 @@ jobs: runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 3.1.101 - - name: Install dependencies - run: dotnet restore - - name: Build - run: dotnet build --configuration Release --no-restore - - name: Test - run: dotnet test --no-restore --verbosity normal +# Commented out until we resolve how to build the project with just netstandard2.1 +# steps: +# - uses: actions/checkout@v2 +# - name: Setup .NET Core +# uses: actions/setup-dotnet@v1 +# with: +# dotnet-version: 3.1.101 +# - name: Install dependencies +# run: dotnet restore +# - name: Build +# run: dotnet build --configuration Release --no-restore +# - name: Test +# run: dotnet test --no-restore --verbosity normal