Skip to content

Update PandExo for Pandeia 2026.2, synphot, and multistripe timing #4

Update PandExo for Pandeia 2026.2, synphot, and multistripe timing

Update PandExo for Pandeia 2026.2, synphot, and multistripe timing #4

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- main
pull_request:
workflow_dispatch:
jobs:
pytest:
name: Pytest
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.python-version == '3.13' }}
steps:
- name: Check out repository
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.py
- name: Install package and test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[test]"
- name: Check installed dependencies
run: python -m pip check
- name: Run tests
run: python -m pytest tests -q -rs