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 98c120f
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/gsbuild.yml
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

0 comments on commit 98c120f

Please sign in to comment.