release: v2.3.2 — sync dev, CI hardening, metadata refresh #8
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: Versioning checks | |
| on: | |
| pull_request: | |
| branches: [ main, develop ] | |
| jobs: | |
| check-versions: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Run version bump checks | |
| run: | | |
| git fetch origin ${{ github.base_ref }} --depth=1 | |
| python scripts/check_versions.py ${{ github.event.pull_request.base.sha }} --check-consistency |