Vectorized versions of matvec routines used in iterative solver #894
Workflow file for this run
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: Pytest | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
conda-test: | |
name: Conda tests on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -el {0} | |
strategy: | |
max-parallel: 5 | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ["3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniconda-version: "latest" | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
conda info | |
pip install -U -r requirements.txt -c constraints.txt | |
- name: Lint with pylint and pycodestyle | |
run: | | |
pip install -U -r requirements-dev.txt -c constraints.txt | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
MTHREE_OPENMP=1 python setup.py build_ext --inplace | |
else | |
python setup.py build_ext --inplace | |
fi | |
pylint -rn mthree | |
pycodestyle --max-line-length=100 mthree | |
- name: Run tests with pytest | |
run: | | |
pip install pytest | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
MTHREE_OPENMP=1 pip install . | |
else | |
pip install . | |
fi | |
pytest -p no:warnings --pyargs mthree/test | |
- name: Build docs | |
run: | | |
conda install pandoc | |
cd docs | |
make html |