Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-03-28 21:13:04 +0300
committerRobert Adam <dev@robert-adam.de>2021-03-28 21:17:38 +0300
commitb48ca7caec6ca5eda3102e224437ee0b57de2e48 (patch)
tree698b6e9799a51573be7199319c7ee4f115adec31
parent2902913d688b487994907bdd2358edbacb624d58 (diff)
CI: Added check to prevent CRLF endings
-rw-r--r--.github/workflows/checks.yml (renamed from .github/workflows/check_commit_style.yml)7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/check_commit_style.yml b/.github/workflows/checks.yml
index 650a1c748..6a6dcaf9e 100644
--- a/.github/workflows/check_commit_style.yml
+++ b/.github/workflows/checks.yml
@@ -1,4 +1,4 @@
-name: Commit style check
+name: Checks
on: [pull_request]
@@ -21,6 +21,9 @@ jobs:
# Don't create a merge commit
ref: ${{ github.event.pull_request.head.sha }}
- - name: Verify commits
+ - name: Check commit style
run: $GITHUB_WORKSPACE/.github/workflows/check_commit_style.py
shell: bash
+
+ - name: Check line endings
+ uses: erclu/check-crlf@v1