We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91def53 commit 027af85Copy full SHA for 027af85
.github/workflows/ci.yml
@@ -25,6 +25,14 @@ jobs:
25
python -m pip install -v ".[dev]"
26
mypy neat_ml
27
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
+ wget http://ftp.de.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.8.1_all.deb
34
+ sudo dpkg -i ttf-mscorefonts-installer_3.8.1_all.deb || true
35
+ sudo fc-cache -fv
36
- name: test
37
run: |
38
cd /tmp && python -m pytest --pyargs neat_ml --cov=neat_ml --cov-report=term-missing
0 commit comments