Skip to content

Work on fixing CIs #128

Work on fixing CIs

Work on fixing CIs #128

Workflow file for this run

name: CI-linux
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11"]
steps:
- name: apt install
run: |
sudo apt-get install -y make libfftw3-dev libfftw3-mpi-dev \
libhdf5-openmpi-dev openmpi-bin libopenmpi-dev \
libopenblas-dev
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install nox pdm
# cython is for coverage
python -m pip install coverage cython
- name: Run tests
run: |
nox --session "tests(with_cov=True, with_mpi=False)"
make cleanall
nox --session "tests(with_cov=True, with_mpi=True)"
coverage xml
- name: Upload coverage to codecov
if: ${{ success() }}
uses: codecov/codecov-action@v3