Prepare for release 1.1.1. #34
Workflow file for this run
This file contains hidden or 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: Tests | |
| on: pull_request | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| python-version: ['3.11', '3.12'] | |
| env: | |
| USE_TRILINOS: 1 | |
| ZOLTAN_INCLUDE: /usr/include/trilinos | |
| ZOLTAN_LIBRARY: /usr/lib/x86_64-linux-gnu | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Linux packages ZOLTAN support | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y openmpi-bin libopenmpi-dev libtrilinos-zoltan-dev | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| pip install --upgrade pip setuptools wheel | |
| pip install https://github.com/pypr/cyarray/zipball/main | |
| pip install -r requirements.txt | |
| pip install -e .[tests] -v --no-build-isolation | |
| - name: Run tests | |
| run: pytest -v pyzoltan |