Skip to content

Commit

Permalink
migrate to GitHub Actions (geopython#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Jun 1, 2021
1 parent 78c99fc commit 7526345
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ jobs:
- name: Install requirements 📦
run: |
# follow GDAL installed version for Python bindings
# - pip3 install GDAL==`gdalinfo --version | cut -d' ' -f2 | cut -d',' -f1`
- pip3 install -r requirements.txt
- pip3 install -r requirements-dev.txt
# pip3 install GDAL==`gdalinfo --version | cut -d' ' -f2 | cut -d',' -f1`
pip3 install -r requirements.txt
pip3 install -r requirements-dev.txt
# - pip3 install -r requirements-provider.txt
- python3 setup.py install
- pip3 install --upgrade rasterio==1.1.8
python3 setup.py install
pip3 install --upgrade rasterio==1.1.8
- name: run unit tests ⚙️
run: |
- pytest tests/test_config.py
- pytest tests/test_openapi.py
- pytest tests/test_util.py
- pytest tests/test_api.py
- pytest tests/test_csv_*.py
pytest tests/test_config.py
pytest tests/test_openapi.py
pytest tests/test_util.py
pytest tests/test_api.py
pytest tests/test_csv_*.py
- name: build docs 🏗️
run: cd docs && make html

0 comments on commit 7526345

Please sign in to comment.