Build(deps): Bump coverage from 7.6.0 to 7.6.1 #3422
Workflow file for this run
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
name: doc_build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
name: html + linkcheck build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up latest Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install latest pip, setuptools + tox | |
run: | | |
python -m pip install --upgrade pip setuptools tox | |
- name: Install base bandersnatch requirements | |
run: | | |
python -m pip install -r requirements.txt | |
python -m pip install -r requirements_test.txt | |
- name: Run doc_build via tox | |
env: | |
TOXENV: doc_build | |
run: | | |
python test_runner.py |