Noto Serif Old Uyghur: Version 1.002; ttfautohint (v1.8.4.7-5d5b) added #6399
Workflow file for this run
This file contains 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: Google Fonts QA | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
diffbrowsers: | |
name: Build Google Fonts | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.10'] | |
os: [windows-latest, macos-latest, ubuntu-latest] | |
steps: | |
- name: Cancel previous | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v1 | |
- name: Set up Python 3.10 | |
uses: actions/[email protected] | |
with: | |
python-version: '3.10' | |
- name: Install packages | |
run: | | |
pip install "gftools[qa]@git+https://github.com/googlefonts/gftools@main" | |
shell: bash | |
- name: Setup Chrome | |
uses: browser-actions/setup-chrome@latest | |
- name: Setup Chrome Driver | |
uses: nanasess/setup-chromedriver@master | |
- name: Setup Firefox | |
uses: m4rc1e/setup-firefox@master | |
with: | |
firefox-version: '84.0' | |
- name: Setup Firefox Driver | |
uses: m4rc1e/setup-geckodriver@master | |
- name: Run Diffbrowsers | |
run: | | |
mkdir out | |
python -m youseedee 0x078A | |
chromedriver --url-base=/wd/hub & | |
sh .ci/run.sh | |
env: | |
PYTHONIOENCODING: 'utf-8' | |
PYTHONUTF8: '1' | |
SCREENSHOTS: true | |
shell: bash | |
- name: Check file existence | |
id: check_files | |
uses: andstor/[email protected] | |
with: | |
files: "out" | |
- name: Upload check results | |
if: steps.check_files.outputs.files_exists == 'true' | |
uses: actions/upload-artifact@v1 | |
with: | |
name: qa | |
path: out/ | |
diffenator: | |
name: Diffenate fonts | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel previous | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v1 | |
- name: Set up Python 3.10 | |
uses: actions/[email protected] | |
with: | |
python-version: '3.10' | |
- name: Install packages | |
run: | | |
pip install --upgrade pip | |
pip install "gftools[qa]@git+https://github.com/googlefonts/gftools@main" | |
shell: bash | |
- name: Run Diffenator | |
run: | | |
mkdir out | |
python -m youseedee 0x078A | |
sh .ci/run.sh | |
env: | |
PYTHONIOENCODING: 'utf-8' | |
PYTHONUTF8: '1' | |
GH_TOKEN: ${{ github.token }} | |
PR_NUMBER: ${{ github.event.number }} | |
shell: bash | |
- name: Check file existence | |
id: check_files | |
uses: andstor/[email protected] | |
with: | |
files: "out" | |
- name: Upload check results | |
if: steps.check_files.outputs.files_exists == 'true' | |
uses: actions/upload-artifact@v1 | |
with: | |
name: qa | |
path: out/ |