Skip to content

Bump actions/upload-artifact from 5 to 6 in the github-actions group #1288

Bump actions/upload-artifact from 5 to 6 in the github-actions group

Bump actions/upload-artifact from 5 to 6 in the github-actions group #1288

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