Skip to content

Added some info to the README #10

Added some info to the README

Added some info to the README #10

Workflow file for this run

name: Deploy MkDocs Documentation
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: main
token: ${{ secrets.MKDOCS_PAT }}
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install mkdocs-material
- name: Build and Deploy
run: mkdocs gh-deploy --force