From 72eaf6cf34dbca3245e60bf19ffdfd18cec4e607 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Wed, 29 Jan 2020 19:58:21 +0000 Subject: [PATCH] Update dotnetcore.yml - Changed back to just one version of .NET Core. --- .github/workflows/dotnetcore.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 3cd94a7..c4a352c 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -7,16 +7,11 @@ jobs: runs-on: ubuntu-latest - strategy: - matrix: - dotnet: [ '2.1', '3.1' ] - name: Dotnet ${{ matrix.dotnet }} build - steps: - uses: actions/checkout@v1 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: ${{ matrix.dotnet }} + dotnet-version: 3.1 - name: Build with dotnet run: dotnet build --configuration Release