Tool enhancements #1982
Workflow file for this run
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
name: Common CI | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'release/*' | |
pull_request: | |
branches: | |
- 'master' | |
- 'release/*' | |
jobs: | |
headers: | |
name: License header check | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for required headers | |
run: | | |
! grep -R -L --exclude-dir=vendor \ | |
--include='*.py' --include='*.rs' --include='*.glade' --include='*.sh' \ | |
'Copyright Concurrent Technologies Corporation' * |