add radon pmtiles #6
This file contains 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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Test Notebooks | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
test_notebooks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source repository | |
uses: actions/[email protected] | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.11 | |
architecture: x64 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
- name: Install dependencies for testing | |
run: | | |
pip install -r requirements_dev.txt | |
- name: Test with doctest | |
run: | | |
python -m doctest README.md | |
- name: Test with pytest | |
run: | | |
python -m pytest -v --nbval sensor-things-api-demo.ipynb | |