Skip to content

a minor update to polaris/imaging.py #30

a minor update to polaris/imaging.py

a minor update to polaris/imaging.py #30

Workflow file for this run

# .github/workflows/ci.yml
# Continuous Integration — runs tests on every push and pull request
name: CI
on:
push:
branches: [main, dev, dev_ihan]
pull_request:
branches: [main]
jobs:
tests:
name: Tests (Python ${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.11", "3.12"]
steps:
- name: Checkout repository
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
python -m pip install -e ".[dev]"
- name: Run tests
run: |
pytest tests/ -v