8000 new docs · urbanjost/M_sets@8a180ba · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

new docs

new docs #19

Workflow file for this run

name: FORD docs deployed to gh-pages
on: [push, pull_request]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: pip install ford
- name: Build Documentation
run: ford ford.md
- uses: JamesIves/github-pages-deploy-action@3.7.1
if: github.event_name == 'push'
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/fpm-ford
CLEAN: true
0