We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2da3b30 commit f649b87Copy full SHA for f649b87
1 file changed
.github/workflows/dotnetBuild.yml
@@ -24,7 +24,7 @@ jobs:
24
with:
25
use-github-auto-merge: true
26
27
- build:
+ build-and-test:
28
runs-on: ubuntu-latest
29
30
steps:
@@ -40,4 +40,7 @@ jobs:
40
run: dotnet restore
41
42
- name: Build
43
- run: dotnet build -p:ContinuousIntegrationBuild=True --no-restore --configuration Release
+ run: dotnet build -p:ContinuousIntegrationBuild=True --no-restore --configuration Release
44
+
45
+ - name: Test
46
+ run: dotnet test --no-build --configuration Release --verbosity normal
0 commit comments