Skip to content

Commit

Permalink
fix duplicate command pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
bfoujols committed Jul 28, 2024
1 parent aa8067e commit 363b4f6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,14 @@ jobs:
- name: Configure Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'
- name: Install mkdocs
run: pip install mkdocs mkdocs-material markdown-callouts mkdocs-literate-nav mkdocs-git-revision-date-localized-plugin pip install mkdocs-git-committers-plugin-2
run: |
pip install mkdocs mkdocs-material
pip install markdown-callouts
pip install mkdocs-literate-nav
pip install mkdocs-git-revision-date-localized-plugin
pip install mkdocs-git-committers-plugin-2
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 363b4f6

Please sign in to comment.