Add tool for generating a normalized text representation of mark/kerning rules #18
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: GS Test Build | |
on: | |
pull_request: | |
jobs: | |
build-gs: | |
runs-on: ubuntu-latest | |
name: Build GS variable fonts | |
steps: | |
- name: Check out fontc source repository | |
uses: actions/checkout@v4 | |
- name: Install the latest stable Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Build and install fontc | |
run: cd fontc && cargo install --path . --debug | |
- name: Check out font project source repository | |
uses: actions/checkout@v4 | |
with: | |
repository: googlefonts/googlesans | |
token: ${{ secrets.GS_READ_FONTC }} | |
- name: Compile Roman variable font | |
run: fontc --source source/GoogleSans/GoogleSans.designspace | |
- name: Compile Italic variable font | |
run: fontc --source source/GoogleSans/GoogleSans-Italic.designspace |