Skip to content

Docker and co (draft) #69

Docker and co (draft)

Docker and co (draft) #69

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 install -y 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

Check failure on line 33 in .github/workflows/ci-linux.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-linux.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
python -m pip install nox pdm
# cython is for coverage
python -m pip install coverage cython
- name: Run tests
run: |
cp .github/fluidfft-site.cfg $HOME/.fluidfft-site.cfg
nox --session "tests(with_cov=True, with_mpi=False)"
nox --session "tests(with_cov=True, with_mpi=True)"
coverage xml
- name: Upload coverage to codecov
if: ${{ success() }}
uses: codecov/codecov-action@v3