chore: add graphviz in ci/cd workflows

This commit is contained in:
Xyphuz 2022-05-17 02:36:41 +08:00
parent ea2bd6f50b
commit 2870b43b12
3 changed files with 10 additions and 1 deletions

View file

@ -15,3 +15,4 @@ jobs:
uses: JRubics/poetry-publish@v1.10
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
extra_build_dependency_packages: "graphviz"

View file

@ -16,6 +16,10 @@ jobs:
- name: Switch to Current Branch
run: git checkout ${{ env.BRANCH }}
- run: |
sudo apt-get update
sudo apt-get install -y graphviz
- name: Setup Python 3.10.4
uses: actions/setup-python@v3
with:

View file

@ -22,6 +22,10 @@ jobs:
- name: Switch to Current Branch
run: git checkout ${{ env.BRANCH }}
- run: |
sudo apt-get update
sudo apt-get install -y graphviz
- name: Setup Python 3.10.4
uses: actions/setup-python@v3
with: