Skip to content

adding files for 9 and 10 #5

adding files for 9 and 10

adding files for 9 and 10 #5

Workflow file for this run

name: Deploy MkDocs Site
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --strict --force