Skip to content

skip spacy 3.8.0 due to numpy build dep #270

skip spacy 3.8.0 due to numpy build dep

skip spacy 3.8.0 due to numpy build dep #270

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
push:
branches: [master, dev]
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
Documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install '.[dev]'
- name: Set up Git
run: |
git config user.name ${{ github.actor }}
git config user.email ${{ github.actor }}@users.noreply.github.com
- name: Build documentation
run: |
git fetch origin gh-pages
mike delete $BRANCH_NAME
mike deploy --push $BRANCH_NAME