From d702f117665ee99f6f1708d870baf86d2272769e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nils=20m=C3=A5s=C3=A9n?= Date: Sun, 14 Mar 2021 14:10:46 +0100 Subject: [PATCH 1/2] use net46 for windows testing on push --- .github/workflows/on-push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml index 1ef2bafad..547db929e 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/on-push.yml @@ -22,11 +22,11 @@ jobs: - configuration: debug os: windows libtarget: net45 - testtarget: net45 + testtarget: net46 - configuration: release os: windows libtarget: net45 - testtarget: net45 + testtarget: net46 steps: - uses: actions/checkout@v2 From 3b30a0215f6aba8dbe616e3df5b43abf608dd013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nils=20m=C3=A5s=C3=A9n?= Date: Sun, 14 Mar 2021 14:14:28 +0100 Subject: [PATCH 2/2] use net46 for windows testing for PRs --- .github/workflows/pull-request.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index ede297174..d7dbbe75e 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -13,11 +13,7 @@ jobs: os: [ubuntu, windows, macos] target: [netstandard2.0, netstandard2.1] include: - - configuration: Debug - os: windows - target: net45 - - configuration: Release - os: windows + - os: windows target: net45 steps: - uses: actions/checkout@v2 @@ -41,12 +37,8 @@ jobs: os: [ubuntu, windows, macos] target: [netcoreapp3.1] include: - - configuration: debug - os: windows - target: net45 - - configuration: release - os: windows - target: net45 + - os: windows + target: net46 steps: - uses: actions/checkout@v2