Skip to content

Merge pull request #235 from dice-group/develop #618

Merge pull request #235 from dice-group/develop

Merge pull request #235 from dice-group/develop #618

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build-sphinx-docs
on: [push,pull_request]
# 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 "build"
build:
# 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:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Set up Python 3.9.18
uses: actions/setup-python@v2
with:
python-version: "3.9.18"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# # pip install -r requirements.txt
- name: Build HTML and import
run: |
# sphinx-apidoc -o docs dicee/ && make -C docs/ html && ghp-import -n -p -f docs/_build/html