This repository was archived by the owner on Aug 15, 2025. It is now read-only.
squashme: commit to push my shit! #205
This file contains hidden or 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: License Header Check | |
on: [push, pull_request] | |
jobs: | |
check-license-headers: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check license headers | |
uses: viperproject/check-license-header@v2 | |
with: | |
path: . | |
config: ./.github/license-check/config.json | |
strict: true |