diff options
author | crupest <crupest@outlook.com> | 2022-03-09 16:50:39 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-03-09 16:50:39 +0800 |
commit | 8e70994392d1be20dbd38c56e7cd44400d01f79e (patch) | |
tree | 02911529d85b1fb780ed14d667b03f5e4ee504c4 | |
parent | aef73578b567f37cbe24991caa5fde536e96c378 (diff) | |
download | timeline-8e70994392d1be20dbd38c56e7cd44400d01f79e.tar.gz timeline-8e70994392d1be20dbd38c56e7cd44400d01f79e.tar.bz2 timeline-8e70994392d1be20dbd38c56e7cd44400d01f79e.zip |
Use .NET Core 6 in backend ci.
-rw-r--r-- | .github/workflows/back-ci.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/back-ci.yaml b/.github/workflows/back-ci.yaml index dd7ffb06..d489e1ae 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 5.0.x
+ - name: Use .Net Core 6.0.x
uses: actions/setup-dotnet@v1
with:
- dotnet-version: "5.0.x"
+ dotnet-version: "6.0.x"
- name: Build And Test
run: dotnet test --logger html --collect:"XPlat Code Coverage" --settings './Timeline.Tests/coverletArgs.runsettings'
|