fix license headers #170
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: Check license headers | |
on: | |
pull_request: # Apply to all pull requests | |
push: # Apply to all branches | |
jobs: | |
license-check: | |
runs-on: ubuntu-latest | |
steps: | |
# Run `git checkout` | |
- uses: actions/checkout@v4 | |
- uses: maximilianpilz/file-header-check@v1 | |
with: | |
config: '.github/license-check/license-config' | |
config-encoding: 'utf-8' | |
log-level: 'DEBUG' |