Bump fonttools[woff] from 4.53.1 to 4.54.0 #245
Workflow file for this run
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
name: CI | |
on: | |
- push | |
- pull_request | |
- workflow_dispatch | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Test with Python ${{ matrix.python }} | |
strategy: | |
matrix: | |
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup test environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: install pip | |
run: | |
python -m pip install --upgrade pip wheel | |
- name: install package | |
run: | |
python -m pip install .[dev,extended_rpm] | |
# https://coverage.readthedocs.io/en/latest/subprocess.html | |
# https://stackoverflow.com/questions/17395015/ | |
- name: coverage preparations | |
run: | | |
SITE_PACKAGES="$(python -m site --user-site)" | |
SITECUSTOMIZE_PATH="$SITE_PACKAGES/sitecustomize.py" | |
mkdir -p $SITE_PACKAGES | |
touch $SITECUSTOMIZE_PATH | |
echo "try:" >> $SITECUSTOMIZE_PATH | |
echo " import coverage" >> $SITECUSTOMIZE_PATH | |
echo " coverage.process_startup()" >> $SITECUSTOMIZE_PATH | |
echo "except ImportError:" >> $SITECUSTOMIZE_PATH | |
echo " pass" >> $SITECUSTOMIZE_PATH | |
- name: test | |
run: | |
coverage run -m unittest discover --verbose --start-directory tests/ | |
- name: coverage report | |
run: | | |
coverage combine | |
coverage report | |
- name: lint | |
run: | |
flake8 | |
- name: mypy | |
run: | |
mypy | |
# Enable after https://github.com/codespell-project/codespell/issues/3387 and | |
# https://github.com/codespell-project/codespell/issues/3381 are resolved. | |
# - name: codespell | |
# run: | |
# codespell |