chore(deps): bump actions/setup-python from 4 to 5 (#28) #345
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
paths: | |
- '.github/workflows/ci.yml' | |
- 'docs/*' | |
- 'mkdocs.yml' | |
- 'Makefile' | |
- 'Pipfile.lock' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install mkdocs dependencies | |
run: make dev | |
- name: Deploy to github pages | |
run: make deploy |