-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7ee6a3
commit 98c120f
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: GS Test Build | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build-roman: | ||
runs-on: ubuntu-latest | ||
name: Build Roman variable font | ||
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: Install fontc and compile fonts | ||
uses: googlefonts/fontc-action@v1 | ||
with: | ||
source-path: source/GoogleSans/GoogleSans.designspace | ||
debug: true | ||
|
||
build-italic: | ||
runs-on: ubuntu-latest | ||
name: Build Italic variable font | ||
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: Install fontc and compile fonts | ||
uses: googlefonts/fontc-action@v1 | ||
with: | ||
source-path: source/GoogleSans/GoogleSans-Italic.designspace | ||
debug: true |