Implement AMPEL360-SPACE-T-PORTAL: stakeholder-centric navigation with automated generation #85
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: Nomenclature Standard Validation | |
| on: | |
| push: | |
| branches: ['**'] | |
| pull_request: | |
| branches: ['**'] | |
| jobs: | |
| validate-nomenclature: | |
| runs-on: ubuntu-latest | |
| name: Validate File Nomenclature | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Validate all files | |
| id: validate | |
| run: | | |
| echo "Running nomenclature validation..." | |
| python validate_nomenclature.py --check-all --strict --verbose | |
| continue-on-error: true | |
| - name: Check validation result | |
| if: steps.validate.outcome == 'failure' | |
| run: | | |
| echo "❌ Nomenclature validation failed!" | |
| echo "Please ensure all files follow the nomenclature standard v2.0:" | |
| echo "[ROOT]_[BUCKET]_[TYPE]_[LC_OR_SUBBUCKET]_[VARIANT]_[DESCRIPTION]_[VERSION].[EXT]" | |
| echo "" | |
| echo "See 00_00_STD_LC01_SPACET_nomenclature-standard_v02.md for details." | |
| exit 1 | |
| - name: Validation success | |
| if: steps.validate.outcome == 'success' | |
| run: | | |
| echo "✅ All files comply with nomenclature standard!" |