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 52c8c93 commit 72f08f6Copy full SHA for 72f08f6
.github/workflows/check-crlf.yml
@@ -0,0 +1,20 @@
1
+# check for Windows CRLF in files
2
+# homepage: https://github.com/marketplace/actions/check-crlf
3
+
4
+name: Check CRLF
5
6
+on: [push, pull_request]
7
8
+jobs:
9
+ Check-CRLF:
10
+ name: verify that only LF linefeeds are used
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout repository contents
15
+ uses: actions/checkout@v4
16
17
+ - name: Use action to check for CRLF endings
18
+ uses: erclu/[email protected]
19
+ with: # ignore directories containing *.csv & data
20
+ exclude: /demo/
0 commit comments