Check docs #464
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
on: | |
schedule: | |
- cron: "0 0 * * 1-5" # run on week days | |
workflow_dispatch: {} # allow running manually from the github ui | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Check docs | |
jobs: | |
update_docs: | |
name: Check docs | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- run: pip install wheel pip -U --break-system-packages | |
- run: pip install -r requirements.txt -U --break-system-packages | |
- run: pip install duckdb --pre -U --break-system-packages | |
# - run: gh repo clone duckdb/duckdb | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: ripgrep | |
- run: python3 scripts/check_for_missing_docs.py >> $GITHUB_STEP_SUMMARY | |
if: success() || failure() |