Skip to content

Explore changing interim prior and impact on calibration #7

Explore changing interim prior and impact on calibration

Explore changing interim prior and impact on calibration #7

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"]
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 Tests
run: |
pytest --durations=0