Skip to content

fix dependency in analysed/ being written as '[object lxml cdata]' #2

fix dependency in analysed/ being written as '[object lxml cdata]'

fix dependency in analysed/ being written as '[object lxml cdata]' #2

Workflow file for this run

name: Build and deploy documentation
on:
push:
branches:
- main
paths:
- "docs/**"
- "corpustools/**"
- ".github/workflows/docs.yml"
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: |
cd docs
pip install -r requirements.txt
- name: Build documentation
run: |
cd docs
mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/site