Skip to content

Added setter methods to pdbx_release_status and modified_date of comp… #82

Added setter methods to pdbx_release_status and modified_date of comp…

Added setter methods to pdbx_release_status and modified_date of comp… #82

Workflow file for this run

# This workflow will install Python dependencies, and generate documentation.
name: ccdutils documentation
on:
push:
branches:
- master
jobs:
documentation:
name: Generate documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: |
pip install rdkit
pip install -e ".[docs]"
- run: |
cd doc
make html
- name: Deploy pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/_build/html