Skip to content

Commit

Permalink
Enable check-crlf github action
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 4, 2020
1 parent 57aba20 commit 1efc140
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/check-crlf.yml
@@ -0,0 +1,20 @@
# check for Windows CRLF in files
# homepage: https://github.com/marketplace/actions/check-crlf

name: Check CRLF

on: [push, pull_request]

jobs:
Check-CRLF:
name: verify that only LF linefeeds are used
runs-on: ubuntu-18.04

steps:
- name: Checkout repository contents
uses: actions/checkout@v1

- name: Use action to check for CRLF endings
uses: erclu/check-crlf@v1.1.2
with: # ignore directories containing *.pdf and *.tab
exclude: msautotest/misc/data/ /msautotest/renderers/expected/

0 comments on commit 1efc140

Please sign in to comment.