Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
willbarton committed Apr 14, 2021
1 parent c5f2b04 commit ab6d8af
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/docs.yml
Expand Up @@ -9,23 +9,24 @@ on:
jobs:
docs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- run: |
git fetch --no-tags --prune --depth=1 origin gh-pages
- uses: actions/checkout@v2
- run: |
git fetch --no-tags --prune --depth=1 origin gh-pages
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ."[docs]"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ."[docs]"
- name: Build docs
run: mkdocs build
- name: Build docs
run: mkdocs build

- name: Publish docs
run: mkdocs gh-deploy
- name: Publish docs
run: mkdocs gh-deploy

0 comments on commit ab6d8af

Please sign in to comment.