Skip to content

Commit

Permalink
Target unit and integration tests only
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjanye committed Jul 4, 2024
1 parent ed2477c commit fc26ba3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ jobs:
- name: Log version
run: echo "Building version ${{ github.ref }}"

- name: Go to project directory
run: cd NinjaNye.SearchExtensions

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore
run: dotnet build .\NinjaNye.SearchExtensions\ -c Release --no-restore --verbosity minimal

- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Unit Tests
run: dotnet test .\NinjaNye.SearchExtensions.Tests\ --no-restore --verbosity minimal

- name: Integration Tests
run: dotnet test .\NinjaNye.SearchExtensions.Tests.Integration\ --no-restore --verbosity minimal

# - name: Pack
# run: dotnet pack --configuration Release --no-build --output ../../nupkgs
Expand Down
2 changes: 2 additions & 0 deletions BuildNugetPackage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ dotnet pack -c Release -o .

cd ..\NinjaNye.SearchExtensions.Soundex\
dotnet pack -c Release -o .

cd ../

0 comments on commit fc26ba3

Please sign in to comment.