fix DEM import if bounding box not given #161
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: formatting | |
on: pull_request | |
jobs: | |
run-linters: | |
name: Run formatter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
- name: Install dependencies | |
run: | | |
pip install black flake8 | |
- name: Run linters / formatters | |
uses: wearerequired/lint-action@master | |
with: | |
black: true | |
flake8: true | |
auto_fix: true |