Skip to content

Commit

Permalink
add test suite for full pycddlib
Browse files Browse the repository at this point in the history
  • Loading branch information
bobmyhill committed Oct 7, 2024
1 parent 1f5260d commit 1484af3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,32 @@ jobs:
- name: test
run: |
PYTHON=python ./test.sh
linux_full_pycddlib:
name: test with full pycddlib
runs-on: [ubuntu-24.04]

strategy:
matrix:
python-versions: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-versions }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-versions }}
- name: setup
run: |
sudo apt update && sudo apt install --yes \
libcdd-dev \
libgmp-dev \
numdiff \
texlive \
texlive-latex-extra
python -m pip install --upgrade pip
pip install pycddlib autograd # this is optional
python --version
- name: test with full pycddlib
run: |
PYTHON=python ./test.sh

0 comments on commit 1484af3

Please sign in to comment.