Skip to content

Commit

Permalink
CI #287 replace action
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Nov 9, 2023
1 parent bd7c31b commit 0f9b8f6
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,21 @@ jobs:
run: |
echo "The docs will be published from this workflow run."
- name: Install Python ${{ matrix.python-version }} Conda environment with micromamba from env-dev.yml
uses: mamba-org/provision-with-micromamba@main
# - name: Install Python ${{ matrix.python-version }} Conda environment with micromamba from env-dev.yml
# uses: mamba-org/provision-with-micromamba@main
# with:
# environment-file: env-dev.yml
# environment-name: test

- name: Install Python
uses: actions/setup-python@v4
with:
environment-file: env-dev.yml
environment-name: test
python-version: "3.11"

- name: Install the package locally
shell: bash -l {0}
run: |
pip install -e .
pip install -e .[docs] -vv
- name: Diagnostics
shell: bash -l {0}
Expand All @@ -72,7 +77,7 @@ jobs:
conda list
env | sort | grep -i CONDA
- name: Build Docs
- name: Build Docs with Sphinx
shell: bash -l {0}
run: |
make -C docs clean html
Expand Down

0 comments on commit 0f9b8f6

Please sign in to comment.