Enforce main <- dev governance, migrate to GPL-2.0-only, add CLI/UI license gates, and split stable/nightly PyPI release lanes
#4
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 Version Sync | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| push: | |
| branches: | |
| - dev | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-version-sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Validate version fields are synchronized | |
| run: | | |
| python radioshaq/scripts/check_version_sync.py | |