Add LSC A60 RGB-CCT E27 806lm #2127
Workflow file for this run
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: Validate LUT files | |
| on: | |
| pull_request: | |
| paths: | |
| - '**/*.csv.gz' | |
| - '.github/workflows/validate-lut-files.yml' | |
| - 'utils/library/scan_lut_quality.py' | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate-lut: | |
| name: Validate LUT CSV files | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6 | |
| with: | |
| python-version: '3.14' | |
| - name: Install dependencies | |
| run: | | |
| cd .github/scripts/lut_validator | |
| npm ci | |
| - name: Validate LUT CSV files | |
| run: node .github/scripts/lut_validator/validate.js | |
| - name: Validate LUT quality | |
| run: python -m utils.library.scan_lut_quality profile_library --severity error --fail-on-issues |