Skip to content

Add automatic downloading of example model data plot3Dmodel.ipynb #190

Add automatic downloading of example model data plot3Dmodel.ipynb

Add automatic downloading of example model data plot3Dmodel.ipynb #190

name: Build and test
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build pytest>=7
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install plons from source
run: |
pip install .
- name: Test with pytest
run: |
pytest