Skip to content

Commit f649b87

Browse files
fix: Add test step back into pipeline
1 parent 2da3b30 commit f649b87

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/dotnetBuild.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
use-github-auto-merge: true
2626

27-
build:
27+
build-and-test:
2828
runs-on: ubuntu-latest
2929

3030
steps:
@@ -40,4 +40,7 @@ jobs:
4040
run: dotnet restore
4141

4242
- name: Build
43-
run: dotnet build -p:ContinuousIntegrationBuild=True --no-restore --configuration Release
43+
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

Comments
 (0)