Rewind filehandle request bodies before retrying requests #1912
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: Build Docs | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python: | |
- 3.8 | |
#- 3.9 | |
#- 3.10 | |
#- 3.11 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
# Fetch all commits so that versioneer will return something compatible | |
# with semantic-version | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install hdf5 (Ubuntu) | |
if: matrix.python == '3.9' && startsWith(matrix.os, 'ubuntu') | |
run: sudo apt-get update && sudo apt-get install -y libhdf5-dev | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip wheel | |
python -m pip install --upgrade tox | |
- name: Build docs | |
run: tox -e docs |