minor update to cron deleting alerts #1633
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: build ⚙️ | |
| on: [ push, pull_request ] | |
| jobs: | |
| main: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| python-version: ['3.10'] | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@v5 | |
| name: Set up Python ${{ matrix.python-version }} | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install system dependencies 📦 | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential devscripts dh-python devscripts fakeroot debhelper python3-all build-essential software-properties-common | |
| sudo add-apt-repository ppa:ubuntugis/ppa | |
| sudo apt-get update | |
| sudo apt-get install -y libgdal-dev | |
| - name: Install requirements 📦 | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip3 install Cython setuptools wheel | |
| pip3 install numpy gdal==`gdal-config --version` | |
| pip3 install -r requirements-dev.txt | |
| - name: Install package 📦 | |
| run: python3 setup.py install | |
| - name: run tests ⚙️ | |
| run: | | |
| pytest -k test_loader | |
| pytest tests/test_openapi_document.py | |
| - name: build Debian package 🏗️ | |
| run: sudo debuild -b -uc -us |