Skip to content

Commit

Permalink
add GS main branch build CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimpkins committed Nov 16, 2023
1 parent c7ee6a3 commit 33419c2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/gsbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: GS Test Build

on:
pull_request:

jobs:
build-gs:
runs-on: ubuntu-latest
name: Build GS variable fonts
steps:
- name: Check out font project source repository
uses: actions/checkout@v4
with:
repository: googlefonts/googlesans
token: ${{ secrets.GS_READ_FONTC }}
- name: Install the latest stable Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Compile Roman variable font
run: cargo build -p fontc && target/debug/fontc --source source/GoogleSans/GoogleSans.designspace
- name: Compile Italic variable font
run: cargo build -p fontc && target/debug/fontc --source source/GoogleSans/GoogleSans-Italic.designspace

0 comments on commit 33419c2

Please sign in to comment.