Skip to content

⬆ Bump urllib3 from 1.26.15 to 1.26.17 #270

⬆ Bump urllib3 from 1.26.15 to 1.26.17

⬆ Bump urllib3 from 1.26.15 to 1.26.17 #270

Workflow file for this run

name: Documentation check
on:
pull_request:
branches: [ master ]
paths:
- 'docs/**'
- '.github/workflows/doc-check.yml'
- 'mkdocs.yml'
- 'Makefile'
jobs:
doc-check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
pyproject.toml
- name: Documentation check
run: make doc-check