Skip to content

Remove hardcoded vendor specific information (#1760) #2748

Remove hardcoded vendor specific information (#1760)

Remove hardcoded vendor specific information (#1760) #2748

Workflow file for this run

name: Build Docs
on:
push:
branches:
- master
pull_request:
jobs:
docs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- '3.10'
#- 3.11
steps:
- name: Check out repository
uses: actions/checkout@v6
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@v6
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade tox
- name: Build docs
run: tox -e docs