Skip to content

r.flowaccumulation: Add a new addon that implements the Memory-Efficient Flow Accumulation parallel algorithm (Cho 2023) #1769

r.flowaccumulation: Add a new addon that implements the Memory-Efficient Flow Accumulation parallel algorithm (Cho 2023)

r.flowaccumulation: Add a new addon that implements the Memory-Efficient Flow Accumulation parallel algorithm (Cho 2023) #1769

Workflow file for this run

---
name: Python Flake8 Code Quality
on:
- push
- pull_request
jobs:
flake8:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install
run: |
python -m pip install --upgrade pip
pip install flake8==3.8.4
- name: Run Flake8
run: |
flake8 --count --statistics --show-source --jobs=$(nproc) .