We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4450e63 commit 550d54cCopy full SHA for 550d54c
.github/workflows/deploy-docs.yml
@@ -30,22 +30,22 @@ jobs:
30
- name: Setup Micromamba env
31
uses: mamba-org/setup-micromamba@v2
32
with:
33
- environment-name: TEST
+ environment-name: FOLIUM
34
init-shell: bash
35
create-args: >-
36
- python=3
+ python=3 pip
37
--file requirements.txt
38
--file requirements-dev.txt
39
40
- name: Install folium from source
41
run: python -m pip install -e . --no-deps --force-reinstall
42
43
- name: Build documentation
44
- run: |
+ run: >
45
set -e
46
- pushd docs
47
- make clean html linkcheck
48
- popd
+ && pushd docs
+ && make clean html linkcheck
+ && popd
49
50
- name: Update switcher and latest version
51
if: ${{ github.event_name == 'release' }}
0 commit comments