Skip to content

Commit

Permalink
ci: fix unit and integration tests setup
Browse files Browse the repository at this point in the history
  • Loading branch information
GenjiruSUchiwa committed Nov 19, 2024
1 parent 3d37468 commit fa13d35
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
- name: Install linting tools
run: |
dotnet tool restore
- name: Validate code linter with Csharpier
run: |
dotnet tool csharpier --check .
build:
needs: lint
runs-on: ubuntu-latest
Expand Down Expand Up @@ -59,7 +62,7 @@ jobs:
dotnet-version: '9.0.x'

- name: Run unit tests
run: dotnet test --configuration Release --no-build --no-restore --filter "Category=Unit"
run: dotnet test ./Place.sln --configuration Release --no-build --no-restore --filter "Category=Unit"

integration_tests:
runs-on: ubuntu-latest
Expand All @@ -77,4 +80,4 @@ jobs:
dotnet-version: '9.0.x'

- name: Run integration tests
run: dotnet test --configuration Release --no-build --no-restore --filter "Category=Integration"
run: dotnet test ./Place.sln --configuration Release --no-build --no-restore --filter "Category=Integration"

0 comments on commit fa13d35

Please sign in to comment.