Add gftools-what-version #1927
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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DEV_FAMILY_DOWNLOAD: ${{ secrets.DEV_FAMILY_DOWNLOAD }} | |
| DEV_META_URL: ${{ secrets.DEV_META_URL }} | |
| DEV_URL: ${{ secrets.DEV_URL }} | |
| DEV_VERSIONS_URL: ${{ secrets.DEV_VERSIONS_URL }} | |
| PRODUCTION_META_URL: ${{ secrets.PRODUCTION_META_URL }} | |
| PRODUCTION_URL: ${{ secrets.PRODUCTION_URL}} | |
| PRODUCTION_VERSIONS_URL: ${{ secrets.PRODUCTION_VERSIONS_URL }} | |
| SANDBOX_FAMILY_DOWNLOAD: ${{ secrets.SANDBOX_FAMILY_DOWNLOAD }} | |
| SANDBOX_META_URL: ${{ secrets.SANDBOX_META_URL }} | |
| SANDBOX_URL: ${{ secrets.SANDBOX_URL }} | |
| SANDBOX_VERSIONS_URL: ${{ secrets.SANDBOX_VERSIONS_URL }} | |
| TRAFFIC_JAM_ID: ${{ secrets.TRAFFIC_JAM_ID }} | |
| STATUS_FIELD_ID: ${{ secrets.STATUS_FIELD_ID }} | |
| LIST_FIELD_ID: ${{ secrets.LIST_FIELD_ID }} | |
| PR_GF_ID: ${{ secrets.PR_GF_ID }} | |
| IN_DEV_ID: ${{ secrets.IN_DEV_ID }} | |
| IN_SANDBOX_ID: ${{ secrets.IN_SANDBOX_ID }} | |
| LIVE_ID: ${{ secrets.LIVE_ID }} | |
| TO_SANDBOX_ID: ${{ secrets.TO_SANDBOX_ID }} | |
| TO_PRODUCTION_ID: ${{ secrets.TO_PRODUCTION_ID }} | |
| BLOCKED_ID: ${{ secrets.BLOCKED_ID }} | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.platform }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.12", "3.13", "3.14"] | |
| platform: [ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Cairo (Ubuntu) | |
| if: matrix.platform == 'ubuntu-latest' | |
| run: sudo apt-get update && sudo apt-get install libcairo2-dev | |
| - name: Install ffmpeg (Ubuntu) | |
| if: matrix.platform == 'ubuntu-latest' | |
| run: sudo apt-get install ffmpeg | |
| - name: Install ffmpeg (Windows) | |
| if: matrix.platform == 'windows-latest' | |
| run: choco install ffmpeg -y | |
| shell: pwsh | |
| # Temporarily skip QA extra on Python 3.14 until skia-python provides wheels for 3.14. | |
| # The qa extra pulls in diffenator2 which depends on blackrenderer[skia] which in turn | |
| # depends on skia-python. Building skia-python from source fails on CI. | |
| # See: https://github.com/googlefonts/gftools/pull/1160 | |
| - name: Install packages (with QA) | |
| if: matrix.python-version != '3.14' | |
| run: | | |
| pip install '.[qa,test]' | |
| - name: Install packages (without QA) | |
| if: matrix.python-version == '3.14' | |
| run: | | |
| pip install '.[test]' | |
| - name: lint | |
| run: | | |
| black . --check --diff --color | |
| - name: Run Server Tests | |
| if: github.event.pull_request.head.repo.fork == false | |
| run: | | |
| pytest tests/push/*.py | |
| shell: bash | |
| - name: Run Tests | |
| run: | | |
| pytest tests/*.py | |
| shell: bash |