This commit is contained in:
Fangjun Kuang 2021-09-13 10:37:07 +08:00
parent 1d61adbec1
commit ce4b23125e

View File

@ -53,6 +53,20 @@ jobs:
# icefall requirements
pip install -r requirements.txt
- name: Install graphviz
if: startsWith(matrix.os, 'ubuntu')
shell: bash
run: |
python3 -m pip install -qq graphviz
sudo apt-get -qq install graphviz
- name: Install graphviz
if: startsWith(matrix.os, 'macos')
shell: bash
run: |
python3 -m pip install -qq graphviz
brew install -q graphviz
- name: Run tests
if: startsWith(matrix.os, 'ubuntu')
run: |