Skip to content

Merge pull request #34 from IAmDannyCN/main #55

Merge pull request #34 from IAmDannyCN/main

Merge pull request #34 from IAmDannyCN/main #55

Workflow file for this run

name: mkdocs-build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "deploy"
deploy:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install mkdocs
- run: pip install pymdown-extensions
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --verbose --force