Skip to content

Cicd combined

Cicd combined #3

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
name: Check SPDX Headers
on:
pull_request:
branches: [main]
jobs:
headers:
name: SPDX Headers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Check SPDX headers
run: |
PYTHON_FILES=$(find src tests -name "*.py" 2>/dev/null)
python ci/check_headers.py $PYTHON_FILES