changes medial zain font offset #42
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: Font Bakery Proofing Tests | |
on: [push, pull_request] | |
jobs: | |
fontbakery: | |
runs-on: ubuntu-latest | |
name: Font Bakery QA tests # Customize to edit the string in your GitHub CI UI | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v3 | |
- name: Set up Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" # supports any Py3.6+ version available in Actions | |
- name: fontbakery OTF checks - Sapna | |
uses: f-actions/font-bakery@v3 | |
with: | |
subcmd: "check-universal" # fontbakery sub-command | |
args: "--loglevel WARN" # optional, arguments to fontbakery | |
path: "fonts/NohadraSyriac-Sapna.otf" # font path relative to root of repository | |
version: "latest" | |
- name: fontbakery OTF checks - Amedia | |
uses: f-actions/font-bakery@v3 | |
with: | |
subcmd: "check-universal" # fontbakery sub-command | |
args: "--loglevel WARN" # optional, arguments to fontbakery | |
path: "fonts/NohadraSyriac-Amedia.otf" # font path relative to root of repository | |
version: "latest" |