Merge pull request #395 from makermelissa-piclaw/add-spdx-check #1
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
| # SPDX-FileCopyrightText: 2026 Melissa LeBlanc-Williams for Adafruit Industries | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: SPDX | |
| on: [pull_request, push] | |
| jobs: | |
| spdx: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.x" | |
| - name: Checkout Current Repo | |
| uses: actions/checkout@v6 | |
| - name: check SPDX licensing | |
| run: python ./SPDX.py |