Skip to content

show foreach in docs #39

show foreach in docs

show foreach in docs #39

Workflow file for this run

name: Documentation
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set Up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install MkDocs and Material theme
run: |
pip install mkdocs
pip install mkdocs-material
- name: Build MkDocs Site
run: mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .docs