Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ jobs:
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5.4.3
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
with:
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/snyk-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Restore dependencies
run: dotnet restore algorithm_exercises_csharp.sln
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/dotnet@master
uses: snyk/actions/dotnet@b98d498629f1c368650224d6d212bf7dfa89e4bf
continue-on-error: true # To make sure that SARIF upload gets called
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ jobs:
run: |
.\.sonar\scanner\dotnet-sonarscanner begin `
/k:"sir-gon_algorithm-exercises-csharp" `
/o:"sir-gon" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" `
/o:"sir-gon" /d:sonar.token="${{ env.SONAR_TOKEN }}" `
/d:sonar.host.url="https://sonarcloud.io" `
/d:sonar.cs.opencover.reportsPaths=**/coverage.opencover.xml

dotnet restore
dotnet build --no-restore
dotnet test --no-build --verbosity normal
.\.sonar\scanner\dotnet-sonarscanner end `
/d:sonar.token="${{ secrets.SONAR_TOKEN }}"
/d:sonar.token="${{ env.SONAR_TOKEN }}"
Loading