Skip to content

testing workflow edits #14

testing workflow edits

testing workflow edits #14

Workflow file for this run

name: Documentation
on: pull_request
jobs:
make-pages:

Check failure on line 6 in .github/workflows/gh_pages.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/gh_pages.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ['3.9']
- name: install sphinx dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install sphinx
python -m pip install sphinx_rtd_theme
python -m pip install sphinx-click
- name: build documentation
run: |
cd docs
make html
- name: deploy
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
force_orphan: true
full_commit_message: ${{ github.event.head_commit.message }}