docs: add fontconfig variant of register_font #1167
Workflow file for this run
This file contains hidden or 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: Lint | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Lint | |
steps: | |
- uses: actions/checkout@v3 | |
- name: pip cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: lint-pip-${{ hashFiles('**/setup.py') }} | |
restore-keys: | | |
lint-pip- | |
- name: pre-commit cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pre-commit | |
key: lint-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml') }} | |
restore-keys: | | |
lint-pre-commit- | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pre-commit | |
- name: Lint | |
run: | | |
pre-commit run --all-files --show-diff-on-failure | |
env: | |
PRE_COMMIT_COLOR: always |