Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
hannorein committed Jan 12, 2024
1 parent 4b40593 commit d3bce0f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/reboundx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
- uses: actions/checkout@v4
with:
path: rebound
- uses: actions/checkout@v4
with:
repository: dtamayp/reboundx
path: reboundx
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand All @@ -25,14 +29,13 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
pip install multiprocess
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: |
git clone https://github.com/dtamayo/reboundx .
pip install --no-build-isolation -e . -v
run: pip install ./reboundx --no-build-isolation -e . -v
- name: Run REBOUNDx unit tests
run: |
cd reboundx
python -m unittest discover -s reboundx/test/ -v

0 comments on commit d3bce0f

Please sign in to comment.