chore: require scitex-scholar>=1.0.0 (real API) #160
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
| # Verify every public module has an extras group in pyproject.toml | |
| # and that 'all' aggregates every individual group. | |
| name: Check Extras Completeness | |
| on: | |
| push: | |
| paths: | |
| - "pyproject.toml" | |
| - "src/scitex/*/" | |
| - "scripts/check-extras-completeness.py" | |
| pull_request: | |
| paths: | |
| - "pyproject.toml" | |
| - "src/scitex/*/" | |
| - "scripts/check-extras-completeness.py" | |
| jobs: | |
| check: | |
| name: Extras Completeness | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Run completeness check | |
| run: python scripts/check-extras-completeness.py |