Skip to content

feat: add fd.clean_excel() companion to fd.clean_csv() (#198) #113

feat: add fd.clean_excel() companion to fd.clean_csv() (#198)

feat: add fd.clean_excel() companion to fd.clean_csv() (#198) #113

Workflow file for this run

name: Docs
on:
push:
branches: [main]
paths:
- "docs/**"
- "mkdocs.yml"
- "src/**"
- ".github/workflows/docs.yml"
workflow_dispatch:
permissions:
contents: write
concurrency:
group: docs-${{ github.ref }}
cancel-in-progress: true
jobs:
build-deploy:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[docs]"
- name: Build (strict)
run: mkdocs build --strict
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
run: mkdocs gh-deploy --force