Skip to content

Commit

Permalink
TEST-0007 Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
hwinther committed Sep 22, 2024
1 parent d0ba13e commit 9b74b2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,13 @@ jobs:
run: |
dotnet stryker --reporter "html" --reporter "json" --reporter "markdown" --solution Backend.sln --output StrykerOutput
ls -la StrykerOutput
cp -r StrykerOutput/reports/* StrykerReport
ls -la ${{ env.BACKEND_SOLUTION_PATH }}/StrykerReport
cp -r StrykerOutput/reports StrykerReports
ls -la ${{ env.BACKEND_SOLUTION_PATH }}/StrykerReports
- uses: actions/upload-artifact@v4
with:
name: stryker
path: ${{ env.BACKEND_SOLUTION_PATH }}/StrykerReport
name: StrykerReports
path: ${{ env.BACKEND_SOLUTION_PATH }}/StrykerReports

# - name: Inspect code
# uses: muno92/resharper_inspectcode@v1
Expand Down

0 comments on commit 9b74b2a

Please sign in to comment.