From b032c334205cf2f7c486cc8f00df7d2df0d2f97d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Felipe=20Corr=C3=AAa=20da=20Silva=20Sanches?= Date: Wed, 26 Oct 2022 17:51:52 +0100 Subject: [PATCH] Use the --pre flag for installing Font Bakery on Github Actions so that we can benefit from the newest checks introduced in its more frequent pre-releases such as v0.8.11a2 released today: https://pypi.org/project/fontbakery/#history --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5fb595f3d1..fc8b65fb0f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -26,9 +26,12 @@ jobs: python-version: 3.8 - name: Install dependencies + # The --pre flag below will ensure we use the latest Font Bakery pre-releases + # and benefit from its newest checks: run: | sudo apt install libharfbuzz-dev libharfbuzz-bin libfreetype6-dev libglib2.0-dev libcairo2-dev python -m pip install --upgrade pip + pip install --pre fontbakery pip install gftools[qa] pytest - name: Check fonts -- 2.47.3