Add missing doc images #1
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: CHECK - Push Validation | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| validate-push: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: SETUP - Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: SETUP - Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: "0.9.8" | |
| enable-cache: true | |
| - name: SETUP - Install dependencies | |
| run: uv pip install --system -e . | |
| - name: CHECK - Verify package imports | |
| run: | | |
| python -c "from silvergrain import FilmGrainRenderer; print('Package imports successfully')" | |
| python -c "from silvergrain.renderer import render_film_grain; print('Functions import successfully')" | |
| - name: CHECK - Verify CLI commands exist | |
| run: | | |
| which silvergrain || command -v silvergrain | |
| which silvergrain-batch || command -v silvergrain-batch | |
| which silvergrain-augment || command -v silvergrain-augment | |
| - name: BUILD - Build wheel (validation only) | |
| run: uv build | |
| - name: DEBUG - List built artifacts | |
| run: ls -la dist/ |