Skip to content

Bump peter-evans/create-pull-request from 7 to 8 in the github-actions group #1280

Bump peter-evans/create-pull-request from 7 to 8 in the github-actions group

Bump peter-evans/create-pull-request from 7 to 8 in the github-actions group #1280

Workflow file for this run

name: Mypy type hint checks
on:
schedule:
- cron: "0 13 * * *"
pull_request:
push:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v6
- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
with:
environment-name: TEST
create-args: >-
python=3
--file requirements.txt
--file requirements-dev.txt
- name: Install folium from source
run: |
python -m pip install -e . --no-deps --force-reinstall
- name: Mypy test
run: |
mypy folium