Skip to content

update demo notebook #70

update demo notebook

update demo notebook #70

Workflow file for this run

name: PASTASOSS CI
on: [push, pull_request]
jobs:
test:
name: test (Python ${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 5
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
id: python
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install jwst_gtvt
run: pip install .
- name: Test package
run: pytest pastasoss/tests/