-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (45 loc) · 1.23 KB
/
Copy pathregression.yml
File metadata and controls
55 lines (45 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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"
- "registry/**"
- "scripts/registry_*.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
registry-lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install registry dependencies
run: pip install pyyaml jsonschema
- name: Validate registry/experiments.yaml
run: python -m registry.loader --check