#28 the complete correct repo has to be here before we continue #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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-latest | |
steps: | |
- name: Checkout repository contents | |
uses: actions/checkout@v3 | |
- name: Use action to check for CRLF endings | |
uses: erclu/check-crlf@v1.2.0 |