From b48ca7caec6ca5eda3102e224437ee0b57de2e48 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Sun, 28 Mar 2021 20:13:04 +0200 Subject: CI: Added check to prevent CRLF endings --- .github/workflows/checks.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/checks.yml (limited to '.github/workflows/checks.yml') diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 000000000..6a6dcaf9e --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,29 @@ +name: Checks + +on: [pull_request] + +jobs: + commit-check: + runs-on: ubuntu-20.04 + + steps: + + - name: Install Python + run: sudo apt install python3 + shell: bash + + - uses: actions/checkout@v2 + with: + # Assume that there are not >200 new commits that need checking + fetch-depth: 200 + # Don't checkout submodules + submodules: 'false' + # Don't create a merge commit + ref: ${{ github.event.pull_request.head.sha }} + + - name: Check commit style + run: $GITHUB_WORKSPACE/.github/workflows/check_commit_style.py + shell: bash + + - name: Check line endings + uses: erclu/check-crlf@v1 -- cgit v1.2.3