chore: add graphviz in ci/cd workflows
This commit is contained in:
parent
ea2bd6f50b
commit
2870b43b12
3 changed files with 10 additions and 1 deletions
1
.github/workflows/cd.yml
vendored
1
.github/workflows/cd.yml
vendored
|
@ -15,3 +15,4 @@ jobs:
|
|||
uses: JRubics/poetry-publish@v1.10
|
||||
with:
|
||||
pypi_token: ${{ secrets.PYPI_TOKEN }}
|
||||
extra_build_dependency_packages: "graphviz"
|
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -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:
|
||||
|
|
4
.github/workflows/release-tagged-version.yml
vendored
4
.github/workflows/release-tagged-version.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue