Skip to content

demonstrate shear inference on multiple galaxy images (low noise) #64

demonstrate shear inference on multiple galaxy images (low noise)

demonstrate shear inference on multiple galaxy images (low noise) #64

Workflow file for this run

name: pytest
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout github repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install .
python -m pip install .[dev]
python -m pip install git+https://github.com/GalSim-developers/JAX-GalSim.git
- name: Run Ruff
run: ruff check --output-format=github .
- name: Run fast tests
run: |
pytest -m "not slow" --durations=0
- name: Run slow tests
run: |
pytest -m "slow" --durations=0