Skip to content

Absolute Flux Calculation Fix #186

Absolute Flux Calculation Fix

Absolute Flux Calculation Fix #186

Workflow file for this run

name: Run tests
on:
pull_request:
branches: [ main ]
workflow_dispatch: # allows manual execution
jobs:
SEDkit-CI:
name: Python - ${{ matrix.python-version }}
runs-on: macos-latest
strategy:
max-parallel: 5
matrix:
python-version: [ "3.13", "3.12", "3.11", ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[test]"
- name: List packages
run: |
pip list
- name: Test with pytest
# tb=no: no traceback
# disable-warnings: disable pytest warnings
run: |
pytest --tb=no --disable-warnings