diff --git a/.editorconfig b/.editorconfig index f65f303..9d84cc1 100644 --- a/.editorconfig +++ b/.editorconfig @@ -143,6 +143,7 @@ dotnet_diagnostic.CA1819.severity = suggestion dotnet_diagnostic.CA1822.severity = suggestion dotnet_diagnostic.CA1826.severity = suggestion dotnet_diagnostic.CA1848.severity = suggestion +dotnet_diagnostic.CA1861.severity = suggestion dotnet_diagnostic.CA1873.severity = suggestion dotnet_diagnostic.CA2000.severity = none dotnet_diagnostic.CA2227.severity = none diff --git a/.gitattributes b/.gitattributes index 6313b56..88d8f74 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,6 @@ * text=auto eol=lf + +# DO NOT EDIT: csharp convention +# generated from https://github.com/Faithlife/CodingGuidelines/blob/master/sections/csharp/gitattributes.md +*.cs text diff=csharp +# END DO NOT EDIT diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c28c02c..c89d356 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,7 @@ jobs: name: Build ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] steps: diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 7a594fe..7daea08 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -1,5 +1,5 @@ # DO NOT EDIT: generated by Faithlife/CodingGuidelines/conventions/faithlife-dotnet-library-workflow -name: "Copilot Setup Steps" +name: Copilot Setup Steps # Automatically run the setup steps when they are changed to allow for easy validation, and # allow manual testing through the repository's "Actions" tab