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 7ab24c7 commit d1c664cCopy full SHA for d1c664c
.github/workflows/build_and_test.yml
@@ -4,16 +4,19 @@ on: [push]
4
5
jobs:
6
build:
7
-
8
runs-on: ubuntu-latest
9
10
steps:
11
- uses: actions/checkout@v1
12
- name: Setup .NET Core
13
uses: actions/setup-dotnet@v1
14
with:
15
dotnet-version: 2.2.108
16
- - name: Build and Test with Dotnet
17
- run: |
18
- dotnet build --configuration Release
19
- dotnet test
+ - name: dotnet build
+ run: dotnet build --configuration Release
+
+ test:
+ runs-on: ubuntu-latest
+ needs: build
20
+ steps:
21
+ - name: dotnet test
22
+ - run: dotnet test
0 commit comments