Merge pull request #273 from norcalipa/snyk-fix-c1e4471f5829bbb7a1797… #207
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
# Copyright (c) 2024 Isaac Adams | |
# Licensed under the MIT License. See LICENSE file in the project root for full license information. | |
name: Check License Headers | |
on: | |
push: | |
paths-ignore: | |
- 'crank/migrations/**' | |
- 'seeds/**' | |
- 'dump/**' | |
- '.gitignore' | |
jobs: | |
check-license: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.13 | |
- name: Check for license headers | |
run: | | |
python check_license.py |