Merge pull request #15 from jllovell/Bugfix-nodata_values_sfm #335
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: docs | |
on: | |
push: | |
branches: | |
- master | |
- conda_only | |
jobs: | |
deploy: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
- uses: s-weigand/setup-conda@v1 | |
with: | |
python-version: 3.7.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --no-cache-dir Cython | |
conda config --add channels conda-forge | |
conda config --set channel_priority strict | |
conda install --file requirements.txt | |
conda install -c conda-forge ipywidgets | |
conda install codespell | |
- name: Discover typos with codespell | |
run: codespell --skip="*.ipynb" -I codespell_ignore_words.txt --check-hidden | |
- name: PKG-TEST | |
run: | | |
python -m unittest discover | |
- run: pip install mkdocs==1.1.2 mkdocs-material mkdocstrings mkdocs-git-revision-date-plugin mkdocs-jupyter livereload python-markdown-math | |
- run: mkdocs gh-deploy --force |