Merge pull request #1991 from python-visualization/dependabot/github_… #517
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: Mypy type hint checks | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Micromamba env | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: TEST | |
create-args: >- | |
python=3 | |
--file requirements.txt | |
--file requirements-dev.txt | |
- name: Install folium from source | |
shell: bash -l {0} | |
run: | | |
python -m pip install -e . --no-deps --force-reinstall | |
- name: Mypy test | |
shell: bash -l {0} | |
run: | | |
mypy folium |