Skip to content

Update Cheminformatics documentation with detailed descriptions of tools #6

Update Cheminformatics documentation with detailed descriptions of tools

Update Cheminformatics documentation with detailed descriptions of tools #6

Workflow file for this run

name: Deploy MkDocs Site
on:
push:
branches:
- main # Set this to the branch you use for development
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 # Checks-out your repository under $GITHUB_WORKSPACE
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # Use the version of Python you need
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
mkdocs gh-deploy --force --clean --verbose