File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # Based on https://codeberg.org/sail.black/serial-sphinx/src/branch/main/.woodpecker.yml
2+
3+ steps :
4+ flake8 :
5+ image : python:3.9-buster
6+ when :
7+ event : pull_request
8+ branch : main
9+ commands :
10+ - python -m pip install --upgrade pip
11+ - python -m pip install flake8
12+ - python -m flake8 . --count --show-source --statistics
13+
14+ pytest :
15+ image : python:${TAG}-buster
16+ when :
17+ event : pull_request
18+ branch : main
19+ commands :
20+ - ls
21+ - wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
22+ - bash Miniforge3.sh -b -p "${HOME}/conda"
23+ - . "${HOME}/conda/etc/profile.d/conda.sh"
24+ - conda activate
25+ - conda install -c conda-forge qgis movingpandas pytest
26+ - pytest .
27+
28+ matrix :
29+ TAG :
30+ - 3.9
31+ - 3.12.0b2
You can’t perform that action at this time.
0 commit comments