aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-11-11 15:45:27 +0800
committercrupest <crupest@outlook.com>2020-11-11 15:45:27 +0800
commita04b2760f4ad72a666251757f0efb97890948914 (patch)
tree97d046bd04d5a0faee219584137e5943a0dc05fe /.github/workflows
parenta63180b5664842ef35baf2dfdf1516ce90dac03a (diff)
downloadtimeline-a04b2760f4ad72a666251757f0efb97890948914.tar.gz
timeline-a04b2760f4ad72a666251757f0efb97890948914.tar.bz2
timeline-a04b2760f4ad72a666251757f0efb97890948914.zip
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'