install folium command included based on request #319
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
# Workflow to check Python code formatting | |
name: Python linting | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install black | |
run: | | |
pip install black[jupyter]==23.3.0 | |
- name: Check code style with Black | |
run: | | |
black --check . |