Skip to content

Update commonstatsmethods.md #135

Update commonstatsmethods.md

Update commonstatsmethods.md #135

Workflow file for this run

name: Docs
on:
workflow_dispatch:
push:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
name: Build and deploy docs
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Build documentation
run: |
python3 -m pip install mkdocs pymdown-extensions mkdocs-cinder
mkdocs build --verbose --clean
- name: Deploy documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site