Skip to content

Commit

Permalink
Switch link checker to miniforge
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-rose committed Oct 1, 2024
1 parent 82da0b8 commit 3a1d41d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/sphinx-link-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup Mambaforge
- name: Setup Miniforge
uses: conda-incubator/setup-miniconda@v2
with:
miniforge-variant: Mambaforge
miniforge-version: latest
python-version: "3.10" # binderbot is failing with python 3.11
activate-environment: ${{ inputs.environment_name }}
use-mamba: true

- name: Set cache date
if: inputs.use_cached_environment == 'true'
Expand All @@ -60,8 +58,8 @@ jobs:
(inputs.use_cached_environment != 'true'
|| steps.cache.outputs.cache-hit != 'true')
run: |
mamba env update -n ${{ inputs.environment_name }} -f ${{ inputs.environment_file }}
mamba install -c conda-forge sphinxcontrib-applehelp=1.0.4 sphinxcontrib-devhelp=1.0.2 sphinxcontrib-htmlhelp=2.0.1 sphinxcontrib-qthelp=1.0.3 sphinxcontrib-serializinghtml=1.1.5
conda env update -n ${{ inputs.environment_name }} -f ${{ inputs.environment_file }}
conda install -c conda-forge sphinxcontrib-applehelp=1.0.4 sphinxcontrib-devhelp=1.0.2 sphinxcontrib-htmlhelp=2.0.1 sphinxcontrib-qthelp=1.0.3 sphinxcontrib-serializinghtml=1.1.5
- name: Check external links
run: |
Expand Down

0 comments on commit 3a1d41d

Please sign in to comment.