Skip to content

Add regression tests, CI, and codebase audit fixes #1

Add regression tests, CI, and codebase audit fixes

Add regression tests, CI, and codebase audit fixes #1

Workflow file for this run

name: Regression Tests
on:
push:
branches: [main]
paths:
- "exact_growth*.py"
- "nbody/exact_growth_nbody.py"
- "3d/exact_growth_nd.py"
- "requirements.txt"
- "test_regression.py"
- ".github/workflows/**"
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 45
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- 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: pip install -r requirements.txt
- name: Run regression tests
run: python test_regression.py