Skip to content

Readme update.

Readme update. #4

Workflow file for this run

name: Tests
on:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy pylint opencv-python osmnx rasterio python_dotenv tqdm types-tqdm pandas-stubs types-requests
- name: Run mypy to generate cache
run: mypy maps4fs || true
- name: Install missing stub packages
run: mypy --install-types --non-interactive
- name: Run mypy
run: mypy maps4fs
- name: Run pylint
run: pylint maps4fs