Skip to content

Commit 749f076

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents f815474 + 0fd1eb5 commit 749f076

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,6 @@ jobs:
4141
- name: List coverage files
4242
run: ls '${{ github.workspace }}/coverage/'
4343

44-
- name: SonarCloud Scan
45-
uses: sonarsource/sonarcloud-github-action@master
46-
with:
47-
args: >
48-
-Dsonar.organization=managedcode
49-
-Dsonar.projectKey=managedcode_Orleans.Identity
50-
-Dsonar.token=${{ secrets.SONAR_TOKEN }}
51-
-Dsonar.cs.opencover.reportsPaths=${{ github.workspace }}/coverage/
52-
env:
53-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
5544

5645
- name: Upload coverage reports to Codecov
5746
uses: codecov/codecov-action@v3
@@ -62,4 +51,4 @@ jobs:
6251
# uses: coverallsapp/github-action@master
6352
# with:
6453
# github-token: ${{secrets.GITHUB_TOKEN }}
65-
# path-to-lcov: coverage/coverage.info
54+
# path-to-lcov: coverage/coverage.info

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ var builder = Host.CreateDefaultBuilder(args)
2626
{
2727
siloBuilder
2828
.UseLocalhostClustering()
29-
.AddOrleansIdentity() // Add the authorization filter
30-
.ConfigureApplicationParts(parts => parts.AddApplicationPart(typeof(YourGrain).Assembly));
29+
.AddOrleansIdentity(); // Add the authorization filter;
3130
});
3231
```
3332

0 commit comments

Comments
 (0)