Skip to content

Commit 6dd5c12

Browse files
authored
Update and rename dotnetcore.yml to build_and_test.yml
1 parent 9444300 commit 6dd5c12

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/dotnetcore.yml renamed to .github/workflows/build_and_test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: .NET Core
1+
name: Build and Test
22

33
on: [push]
44

@@ -13,5 +13,8 @@ jobs:
1313
uses: actions/setup-dotnet@v1
1414
with:
1515
dotnet-version: 2.2.108
16-
- name: Build with Dotnet
17-
run: dotnet build --configuration Release
16+
- name: Build and Test with Dotnet
17+
run: |
18+
dotnet build --configuration Release
19+
dotnet restore
20+
dotnet test

0 commit comments

Comments
 (0)