Skip to content

Commit

Permalink
Fix 'Github Actions' configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Jul 19, 2023
1 parent 73803c9 commit bcf8a36
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,13 @@ jobs:
--target-framework-override ${{ matrix.dotnet_runtime_version }}
- name: >
fix "CS8370: Feature 'file-scoped namespace' is not available in C# 7.3"
run: dotnet format ${{ env.TEST_PROJECT_NAME }} --diagnostics IDE0160
run: |
root = true
cat > .editorconfig <<EOF
[*.cs]
dotnet_analyzer_diagnostic.category-Style.severity = error
EOF
dotnet format style ${{ env.TEST_PROJECT_NAME }} --diagnostics IDE0160
- name: 'Install'
run: >
dotnet add ${{ env.TEST_PROJECT_NAME }} package
Expand Down

0 comments on commit bcf8a36

Please sign in to comment.