Skip to content
Draft
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
4 changes: 1 addition & 3 deletions .github/workflows/dotnet-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- name: Setup .NET SDK # detected from global.json
uses: actions/setup-dotnet@v4.2.0
- name: Add Problem Matcher for dotnet-format
uses: xt0rted/dotnet-format-problem-matcher@v1.2.0
uses: nogic1008/setup-dotnet@93a95a226bf576aaee8f2fc99997923229e43f1b
- name: Lint
run: dotnet format --verify-no-changes --verbosity detailed

Expand Down
2 changes: 1 addition & 1 deletion test/Sample.Test/FizzBuzz.Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/// <inheritdoc cref="Enumerable.Where{TSource}(IEnumerable{TSource}, Func{TSource, bool})" path="/param[@name='predicate']"/>
/// </param>
private static int[] GenerateValues(Func<int, bool> predicate)
{
{

Check failure on line 18 in test/Sample.Test/FizzBuzz.Test.cs

View workflow job for this annotation

GitHub Actions / Lint

Fix whitespace formatting. Replace 12 characters with '\n\s\s\s\s\s\s\s\s'.
const int count = 10;
int[] values = new int[count];
for (int i = 0; i < values.Length; i++)
Expand Down
Loading