Skip to content

Merge pull request #11 from VH-Lab/refactor-tests-structure-142633825… #9

Merge pull request #11 from VH-Lab/refactor-tests-structure-142633825…

Merge pull request #11 from VH-Lab/refactor-tests-structure-142633825… #9

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [ main ]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
pip install .
- name: Configure Git User
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Deploy
run: mkdocs gh-deploy --force