forked from duckdb/duckdb-web
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 856 Bytes
/
Copy pathcheck-docs.yml
File metadata and controls
29 lines (26 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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@v7
- uses: actions/setup-python@v7
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.87.0
with:
tool: ripgrep
- run: python3 scripts/check_for_missing_docs.py >> $GITHUB_STEP_SUMMARY
if: success() || failure()