Better names for misc-checks workflow steps

This commit is contained in:
Martin Hořeňovský 2020-11-10 15:25:24 +01:00
parent 851a0e907e
commit 447b39cae0
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A

View File

@ -1,7 +1,5 @@
name: Check header guards
# Run this workflow every time a new commit pushed to your repository
on: [push, pull_request]
jobs:
@ -20,8 +18,7 @@ jobs:
- name: Install checkguard
run: pip install guardonce
# Check include guard naming convention
- name: checkguard
- name: Check that include guards are properly named
run: |
wrong_files=$(checkguard -r src/catch2/ -p "name | append _INCLUDED | upper")
if [[ $wrong_files ]]; then
@ -30,10 +27,10 @@ jobs:
exit 1
fi
# Check duplicate files for include guard conflicts
- name: checknames
- name: Check that there are no duplicated filenames
run: |
python tools/scripts/checkDuplicateFilenames.py
- name: checklicense
- name: Check that all source files have the correct license header
run: |
python tools/scripts/checkLicense.py