We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 208b3d4 commit 4cc558fCopy full SHA for 4cc558f
.github/workflows/build.yml
@@ -54,6 +54,14 @@ jobs:
54
rustup target add x86_64-unknown-linux-musl
55
musl-gcc --version
56
57
+ # By default the Windows runner has autocrlf set which causes CRLF
58
+ # line endings and the whitespace linter removes them so linting fails.
59
+ # IMO autocrlf is an abomination and you should set it to `input` on Windows
60
+ # which will not convert on checkout, and will automatically convert
61
+ # CRLF to LF on commit so you don't accidentally add CRLF line endings.
62
+ - name: Disable autocrlf
63
+ run : git config --global core.autocrlf input
64
+
65
- uses: actions/checkout@v4
66
67
- name: Versions
0 commit comments