HOTFIX : Fixes login Issue #48
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Unit test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python 3 | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: 3.11 | |
| - name: Install gdal | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y osmium-tool | |
| sudo apt-get install python3-dev build-essential cmake libboost-dev \ | |
| libexpat1-dev zlib1g-dev libbz2-dev libgdal-dev gdal-bin libspatialindex-dev osmctools | |
| - name: Install Dependencies | |
| run: | | |
| export CPLUS_INCLUDE_PATH=/usr/include/gdal | |
| export C_INCLUDE_PATH=/usr/include/gdal | |
| pip install -r requirements-dev.txt | |
| - name: Run Tests | |
| run: | | |
| make test |