Skip to content

Commit

Permalink
Merge pull request #2 from SimonCropp/update-verify-stuff
Browse files Browse the repository at this point in the history
update verify stuff
  • Loading branch information
xoofx authored Jul 19, 2024
2 parents a373129 + 464dafc commit 3770a99
Show file tree
Hide file tree
Showing 49 changed files with 1,223 additions and 1,071 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,14 @@ dotnet_style_prefer_simplified_interpolation = true:suggestion
dotnet_style_namespace_match_folder = true:suggestion
dotnet_style_operator_placement_when_wrapping = beginning_of_line
tab_width = 4


# Verify settings
[*.{received,verified}.{txt,xml,json}]
charset = "utf-8-bom"
end_of_line = lf
indent_size = unset
indent_style = unset
insert_final_newline = false
tab_width = unset
trim_trailing_whitespace = false
5 changes: 4 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
*.sh text eol=lf
*.sh text eol=lf


*.verified.txt text eol=lf working-tree-encoding=UTF-8
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,12 @@ jobs:
build:
uses: xoofx/.github/.github/workflows/dotnet.yml@main
secrets:
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}

- name: Upload Test Results
if: failure()
uses: actions/upload-artifact@v4
with:
name: verify-test-results
path: |
**/*.received.*
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -370,3 +370,6 @@ tmp/

# Remove artifacts produced by dotnet-releaser
artifacts-dotnet-releaser/

# Verify
*.received.*
Loading

0 comments on commit 3770a99

Please sign in to comment.