We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf83fe5 commit 14cf0deCopy full SHA for 14cf0de
1 file changed
.github/workflows/dotnet3.1Build.yml .github/workflows/dotnetBuild.yml.github/workflows/dotnet3.1Build.yml renamed to .github/workflows/dotnetBuild.yml
@@ -12,14 +12,20 @@ jobs:
12
runs-on: windows-latest
13
steps:
14
- uses: actions/checkout@v2
15
- - name: Setup .NET Core SDK 5.0
+ - name: Setup .NET 5.0
16
uses: actions/setup-dotnet@v1
17
with:
18
dotnet-version: '5.0.x'
19
+ - name: Setup .NET Core 3.1
20
+ uses: actions/setup-dotnet@v1
21
+ with:
22
+ dotnet-version: '3.1.x'
23
- name: Get Directory
24
run: pwd
25
+ - name: Install dependencies
26
+ run: dotnet restore
27
- name: Build
- run: dotnet build -p:Version="${{ env.version }}"
28
+ run: dotnet build -p:Version="${{ env.version }}" --no-restore
29
- name: Test
30
run: dotnet test --no-build --verbosity normal
31
- name: dotnet pack
0 commit comments