From 340c1f9a25186e073a1d5d8829b38c1c752ac746 Mon Sep 17 00:00:00 2001 From: Fredrik Arvidsson Date: Thu, 20 Jan 2022 19:22:22 +0100 Subject: [PATCH] ci: build and test with .NET Core 3.1 SDK on linux --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9062a1d..9124a94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,13 +12,13 @@ jobs: timeout-minutes: 10 strategy: matrix: - os: [windows-latest] + os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.x + dotnet-version: 3.1.x - name: Build run: dotnet build -c Release - name: Test