Bump aiohttp from 3.12.13 to 3.12.14 #1810
Workflow file for this run
This file contains hidden or 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
--- | |
name: website-test | |
# Test that documentation builds successfully on all pushes | |
on: [push] # yamllint disable-line rule:truthy | |
jobs: | |
test_docs_build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: pip install -r requirements-docs.txt | |
- name: Test MkDocs build | |
run: mkdocs build --strict |