Skip to content

Bump tqdm from 4.66.2 to 4.66.3 #1044

Bump tqdm from 4.66.2 to 4.66.3

Bump tqdm from 4.66.2 to 4.66.3 #1044

Workflow file for this run

name: Check docs structure
on:
- pull_request
- push
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get install python3-pip python3-setuptools python3-wheel --assume-yes --install-recommends
sudo pip3 install -r requirements.txt .
- name: Check for broken redirects
run: ./tools/find-broken-redirects
- name: Check for missing pages
run: ./tools/find-missing
- name: Check for orphaned pages
run: ./tools/find-orphans
- name: Check for trailing whitespace
run: ./tools/find-whitespace
- name: Lint YAML
run: yamllint docs/
- name: Build the docs site
if: github.event_name != 'push'
run: |
mkdocs build