aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-11-11 16:04:22 +0800
committerGitHub <noreply@github.com>2020-11-11 16:04:22 +0800
commitcfa8cc7b66ecc5f396fea080e4e59d99888c47fc (patch)
treee20f58d5166ef4b335a7d48dc0a9b9959ef0ab3f /.github/workflows
parentacef142fbbff0a22d7df5268c0d2839a6335774e (diff)
parent86c7ef8aca3982754456cf99609ec4f83fc09f5c (diff)
downloadtimeline-cfa8cc7b66ecc5f396fea080e4e59d99888c47fc.tar.gz
timeline-cfa8cc7b66ecc5f396fea080e4e59d99888c47fc.tar.bz2
timeline-cfa8cc7b66ecc5f396fea080e4e59d99888c47fc.zip
Merge pull request #172 from crupest/migrate
Migrate to .net 5.0.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/back-ci.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/back-ci.yaml b/.github/workflows/back-ci.yaml
index 5b4609f7..dd7ffb06 100644
--- a/.github/workflows/back-ci.yaml
+++ b/.github/workflows/back-ci.yaml
@@ -33,10 +33,10 @@ jobs:
restore-keys: |
nuget-${{ runner.os }}-
- - name: Use .Net Core 3.1.x
+ - name: Use .Net Core 5.0.x
uses: actions/setup-dotnet@v1
with:
- dotnet-version: "3.1.x"
+ dotnet-version: "5.0.x"
- name: Build And Test
run: dotnet test --logger html --collect:"XPlat Code Coverage" --settings './Timeline.Tests/coverletArgs.runsettings'