Skip to content

Commit d1c664c

Browse files
authored
Update build_and_test.yml
1 parent 7ab24c7 commit d1c664c

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/build_and_test.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,19 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
9-
108
steps:
119
- uses: actions/checkout@v1
1210
- name: Setup .NET Core
1311
uses: actions/setup-dotnet@v1
1412
with:
1513
dotnet-version: 2.2.108
16-
- name: Build and Test with Dotnet
17-
run: |
18-
dotnet build --configuration Release
19-
dotnet test
14+
- name: dotnet build
15+
run: dotnet build --configuration Release
16+
17+
test:
18+
runs-on: ubuntu-latest
19+
needs: build
20+
steps:
21+
- name: dotnet test
22+
- run: dotnet test

0 commit comments

Comments
 (0)