set floors on runtime dependencies (fixes #272) (#278) #700
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: docs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: check-docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
environment-file: docs/env.yml | |
activate-environment: pydistcheck-docs | |
miniforge-version: latest | |
- name: build docs | |
shell: bash -l {0} | |
run: | | |
pip install . | |
make -C ./docs html |