Skip to content

Commit

Permalink
Update PDM version and install Graphviz for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
maerkl24 committed Oct 29, 2023
1 parent f22c53a commit 12cf3ab
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,16 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python 3.10 and PDM 2.4.9
- name: Set up Python 3.10 and PDM 2.10.0
uses: pdm-project/setup-pdm@v3
with:
python-version: '3.10'
architecture: x64
version: 2.4.9
version: 2.10.0
- name: Install hockeygameclock and development tools
run: pdm install -dG doc
- name: Install Graphviz (needed by PlantUML)
run: apt-get install graphviz
- name: Run Sphinx
run: |
cd docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python 3.10 and PDM 2.4.9
- name: Set up Python 3.10 and PDM 2.10.0
uses: pdm-project/setup-pdm@v3
with:
python-version: '3.10'
architecture: x64
version: 2.4.9
version: 2.10.0
- name: Install hockeygameclock and development tools
run: pdm install -dG format
- name: Run isort
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python 3.10 and PDM 2.4.9
- name: Set up Python 3.10 and PDM 2.10.0
uses: pdm-project/setup-pdm@v3
with:
python-version: '3.10'
architecture: x64
version: 2.4.9
version: 2.10.0
- name: Install hockeygameclock
run: pdm install
- name: Run pyside6-uic and pyside6-rcc
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} and PDM 2.4.9
- name: Set up Python ${{ matrix.python-version }} and PDM 2.10.0
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
version: 2.4.9
version: 2.10.0
- name: Install hockeygameclock and development tools
run: pdm install -dG lint
- name: Run mypy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} and PDM 2.4.9
- name: Set up Python ${{ matrix.python-version }} and PDM 2.10.0
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
version: 2.4.9
version: 2.10.0
- name: Install hockeygameclock and development tools
run: pdm install -dG test
- name: Run pytest
Expand Down

0 comments on commit 12cf3ab

Please sign in to comment.