Skip to content

Add data source for SRTM elevation data from NASA Earthdata. #227

Add data source for SRTM elevation data from NASA Earthdata.

Add data source for SRTM elevation data from NASA Earthdata. #227

Workflow file for this run

name: Lint (type checking, security, code quality, ruff)
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: false
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10.10
pip-version: 24
- name: Linting
run: |
pip install pre-commit interrogate
pre-commit run --all-files