More bugfixes in projectors #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.12" | |
- name: Install symd | |
run: | | |
sudo apt-get install libgsl-dev cmake libxml2-dev libxslt1-dev | |
mkdir build && cd build && cmake .. && make && sudo make install | |
- name: Install dependencies | |
working-directory: python | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r ../dev-requirements.txt | |
- name: Install | |
working-directory: python | |
run: | | |
pip install . && pip install -r docs/requirements.txt | |
- name: Run tests | |
run: | | |
pytest tests/ |