File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
.github/ISSUE_TEMPLATE/workflows Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Unit test
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ branches :
8
+ - master
9
+
10
+ jobs :
11
+ deploy :
12
+ runs-on :
13
+ ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Set up Python 3
17
+ uses : actions/setup-python@v1
18
+ with :
19
+ python-version : 3.11
20
+
21
+ - name : Install gdal
22
+ run : |
23
+ sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable
24
+ sudo apt-get update
25
+ sudo apt-get install libgdal-dev osmctools gdal-bin libspatialindex-dev
26
+
27
+ - name : Install Dependencies
28
+ run : |
29
+ export CPLUS_INCLUDE_PATH=/usr/include/gdal
30
+ export C_INCLUDE_PATH=/usr/include/gdal
31
+ pip install -r requirements-dev.txt
32
+ - name : Run Tests
33
+ run : |
34
+ make test
You can’t perform that action at this time.
0 commit comments