allow AttributError on missing bbox-coords #603
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-24.04 | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@v5 | |
| name: Setup Python ${{ matrix.python-version }} | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install system dependencies 📦 | |
| run: sudo apt-get update && sudo apt-get install -y dh-python devscripts fakeroot debhelper python3-all build-essential | |
| - name: Install requirements 📦 | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip3 install setuptools | |
| pip3 install -r requirements-dev.txt | |
| - name: Install package 📦 | |
| run: pip3 install . | |
| - name: run tests with coverage ⚙️ | |
| run: | | |
| coverage run --source pygeometa tests/run_tests.py | |
| coverage report -m | |
| - name: build docs 🏗️ | |
| run: mkdocs build -f docs/mkdocs.yml | |
| - name: run flake8 ⚙️ | |
| run: flake8 | |
| - name: build Python package 🏗️ | |
| run: python3 setup.py sdist bdist_wheel --universal | |
| - name: build Debian package 🏗️ | |
| run: sudo debuild -b -uc -us |