Skip to content

Commit b524288

Browse files
committed
WIP, MAINT: add external microsoft fonts in CI
1 parent 91def53 commit b524288

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@ jobs:
2525
python -m pip install -v ".[dev]"
2626
mypy neat_ml
2727
ruff check neat_ml
28+
- name: install fonts
29+
if: runner.os == 'Linux'
30+
run: |
31+
sudo apt-get update
32+
sudo apt-get install -y cabextract
33+
sudo apt-get install -y xfonts-utils
34+
wget http://ftp.de.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.8.1_all.deb
35+
sudo dpkg -i ttf-mscorefonts-installer_3.8.1_all.deb || true
36+
sudo fc-cache -fv
2837
- name: test
2938
run: |
3039
cd /tmp && python -m pytest --pyargs neat_ml --cov=neat_ml --cov-report=term-missing

0 commit comments

Comments
 (0)