mirror of
https://github.com/google/fonts.git
synced 2024-12-17 21:51:52 +03:00
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
name: Google Fonts QA
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build Google Fonts
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
# TODO use build matrix?
|
|
python-version: 3.8
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt install libharfbuzz-dev libharfbuzz-bin libfreetype6-dev libglib2.0-dev libcairo2-dev
|
|
python -m pip install --upgrade pip
|
|
pip install gftools[qa]
|
|
- name: Check fonts
|
|
env:
|
|
GF_API_KEY: ${{ secrets.GF_API_KEY }}
|
|
BSTACK_ACCESS_KEY: ${{ secrets.BSTACK_ACCESS_KEY }}
|
|
BSTACK_USERNAME: ${{ secrets.BSTACK_USERNAME }}
|
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
PR_NUMBER: ${{ github.event.number }}
|
|
run: |
|
|
sh .ci/run.sh
|
|
- name: Check file existence
|
|
id: check_files
|
|
uses: andstor/file-existence-action@v1
|
|
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/
|
|
|