-
Notifications
You must be signed in to change notification settings - Fork 220
41 lines (37 loc) · 1.2 KB
/
reboundx.yml
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
name: REBOUNDx (python)
on: [push, pull_request]
jobs:
build:
name: Python tests on ${{ matrix.os }} (${{ matrix.python-version }})
timeout-minutes: 10
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.9", "3.11", "3.12"]
os: [ubuntu-latest, macos-11]
steps:
- uses: actions/checkout@v4
with:
path: rebound
- uses: actions/checkout@v4
with:
repository: dtamayo/reboundx
path: reboundx
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest wheel setuptools
pip install -r rebound/requirements.txt
pip install -r reboundx/requirements.txt
- name: Build REBOUND package
run: pip install ./rebound
- name: Build REBOUNDx package
run: pip install --no-build-isolation -e ./reboundx -v
- name: Run REBOUNDx unit tests
run: |
cd reboundx
python -m unittest discover -s reboundx/test/ -v