Skip to content

Commit

Permalink
Update continuous.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GenjiruSUchiwa authored Nov 19, 2024
1 parent 1c10aec commit 34ffa23
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ jobs:
runs-on: ubuntu-latest
needs: [lint, build ]
steps:
- name: "Verify working directory"
run: ls -R
- name: Download build artefact
uses: actions/download-artifact@v4
with:
Expand All @@ -64,12 +66,14 @@ 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 ./PlaceApi.sln --configuration Release --no-build --no-restore --filter "Category=Unit"

integration_tests:
runs-on: ubuntu-latest
needs: [lint, build ]
steps:
- name: "Verify working directory"
run: ls -R
- name: Download build artefact
uses: actions/download-artifact@v4
with:
Expand All @@ -82,4 +86,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 ./PlaceApi.sln --configuration Release --no-build --no-restore --filter "Category=Integration"

0 comments on commit 34ffa23

Please sign in to comment.