We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 781bd34 commit b121024Copy full SHA for b121024
.github/workflows/build.yml
@@ -13,13 +13,9 @@ jobs:
13
14
steps:
15
- uses: actions/checkout@v2
16
- - name: Setup .NET Core
17
- uses: actions/setup-dotnet@v1
18
- with:
19
- dotnet-version: 3.1.301
20
- - name: Install dependencies
+ - name: Restore
21
run: dotnet restore
22
- name: Build
23
run: dotnet build --configuration Release --no-restore
24
- name: Test
25
- run: dotnet test --no-restore --verbosity normal
+ run: dotnet test --configuration Release --no-restore --verbosity normal
0 commit comments