https://github.com/fonttools/setup-fontspector
Sets up the fontspector font QA tool
https://github.com/fonttools/setup-fontspector
Last synced: 2 months ago
JSON representation
Sets up the fontspector font QA tool
- Host: GitHub
- URL: https://github.com/fonttools/setup-fontspector
- Owner: fonttools
- License: apache-2.0
- Created: 2025-05-19T16:56:24.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-06-09T08:40:01.000Z (7 months ago)
- Last Synced: 2025-06-12T07:14:14.415Z (7 months ago)
- Language: JavaScript
- Size: 1000 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup Fontspector
[](https://github.com/super-linter/super-linter)

Use this template to install Fontspector in your GitHub Actions Workflow:
```yaml
- name: Install fontspector
uses: fonttools/setup-fontspector@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
By default, this installs the latest released version as a binary. You may also
choose a specific release:
```yaml
- name: Install fontspector
uses: fonttools/setup-fontspector@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: 1.0.1
```
or you can get a recent binary build artefact by requesting a "head" version:
```yaml
# Needed for source build
- uses: actions-rust-lang/setup-rust-toolchain@v1
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install fontspector
uses: fonttools/setup-fontspector@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: 1.0.1
```
or you can build from source by requesting any non-default features you would
like to build (as a space separated list)
```yaml
# Needed for source build
- uses: actions-rust-lang/setup-rust-toolchain@v1
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install fontspector
uses: fonttools/setup-fontspector@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: latest
features: python duckdb
```