Skip to content

Commit

Permalink
Merge pull request #96 from Subaru-PFS/u/monodera/add_python_actions
Browse files Browse the repository at this point in the history
add setup-python to GitHub Actions
  • Loading branch information
monodera authored Jun 27, 2024
2 parents 5167cfe + f901900 commit 7125c2a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set-up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install dependencies
run: pip install mkdocs "mkdocs-material[imaging]"
run: pip install -U mkdocs "mkdocs-material[imaging]"

- name: Build and deploy documentation
run: mkdocs build --site-dir ${{ vars.DOC_PATH }}

0 comments on commit 7125c2a

Please sign in to comment.