Skip to content

Merge pull request #76 from rofrano/fix-testcases #6

Merge pull request #76 from rofrano/fix-testcases

Merge pull request #76 from rofrano/fix-testcases #6

Workflow file for this run

name: mkdocs-deploy
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Dependencies
run: pip install mkdocs-material mkdocs-autorefs mkdocs-get-deps mkdocs-material-extensions mkdocstrings mkdocstrings-python
- name: Deploy docs
run: mkdocs gh-deploy --force --verbose