Skip to content

Commit 2ead52b

Browse files
committed
Fix artifact path and update task names
1 parent 7612015 commit 2ead52b

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
fetch-depth: 0
2525

26-
- name: Build and analyze
26+
- name: Build and test the solution
2727
env:
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/[email protected]
4040
with:
4141
name: FluentAssignments
42-
path: "**/.*"
42+
path: "**/*"
4343

4444
analyse:
4545
needs: build
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/download-artifact@master
6161
with:
6262
name: FluentAssignments
63-
path: "**/.*"
63+
path: "**/*"
6464

6565
- name: Cache SonarCloud packages
6666
uses: actions/[email protected]
@@ -90,8 +90,6 @@ jobs:
9090
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
9191
shell: powershell
9292
run: |
93-
dotnet tool install --global dotnet-coverage
94-
dotnet tool install --global dotnet-stryker
9593
.\.sonar\scanner\dotnet-sonarscanner begin /k:"astar-development_astar-dev-fluentassignments" /o:"astar-development" /d:sonar.scanner.scanAll=false /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml
9694
dotnet-coverage collect 'dotnet test --filter "FullyQualifiedName!~Acceptance.Tests"' -f xml -o 'coverage.xml'
9795
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"

0 commit comments

Comments
 (0)