Add DOI badge #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install atomphys | |
run: pip install . | |
- name: Install MkDocs | |
run: pip install mkdocs-material mkdocstrings mkdocs-include-markdown-plugin mknotebooks | |
- name: Run MkDocs | |
run: mkdocs gh-deploy --force |