Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
vip32 committed Apr 25, 2024
1 parent 936667f commit c58c502
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,14 @@ jobs:
# dotnet list ${{ github.workspace }}/BridgingIT.DevKit.sln package --vulnerable --include-transitive 2>&1 | tee build.log
# test `grep -cm 1 'has the following vulnerable packages' build.log` = 0 || exit 1

- name: Run tests
run: dotnet test '${{ github.workspace }}/tests/*/*UnitTests.csproj' --configuration ${{ env.Build_Configuration }} --no-restore --no-build --nologo

- name: Integration tests
run: dotnet test '${{ github.workspace }}/tests/*/*IntegrationTests.csproj' --configuration ${{ env.Build_Configuration }} --no-restore --no-build --nologo --filter FullyQualifiedName!~Examples
run: dotnet test --filter FullyQualifiedName\!~Examples --configuration ${{ env.Build_Configuration }} --no-restore --no-build --nologo --filter FullyQualifiedName!~Examples

# - name: Run tests
# run: dotnet test '${{ github.workspace }}/tests/**/*UnitTests.csproj' --configuration ${{ env.Build_Configuration }} --no-restore --no-build --nologo

# - name: Integration tests
# run: dotnet test '${{ github.workspace }}/tests/**/*IntegrationTests.csproj' --configuration ${{ env.Build_Configuration }} --no-restore --no-build --nologo --filter FullyQualifiedName!~Examples

# - name: Package pack (nuget)
# run: dotnet pack --configuration ${{ env.Build_Configuration }} --no-restore --no-build --nologo ${{ env.Solution_Name }} --no-build --output ${{ env.NuGet_Directory }}
Expand Down

0 comments on commit c58c502

Please sign in to comment.