Skip to content

Bump pymdown-extensions from 9.5 to 10.0 #38

Bump pymdown-extensions from 9.5 to 10.0

Bump pymdown-extensions from 9.5 to 10.0 #38

Workflow file for this run

# This workflow will install Python dependencies, Unit testing, Publishing PyPI package
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Main Workflow
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build wheels and source tarball
run: >-
poetry build
- name: Build docs
run: |
poetry install -E doc
poetry run mkdocs build
- name: Show temporary files
run: >-
ls -l
- name: Publish docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site