Skip to content

Updated URLs in README.md #4

Updated URLs in README.md

Updated URLs in README.md #4

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pdoc3
python -m pip install -e .
- name: Build docs with pdoc
run: |
# build docs to html/slstools dir
pdoc --html --config show_source_code=False --config latex_math=True slstools
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: html/slstools
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}