Skip to content

fix ci deps

fix ci deps #71

Workflow file for this run

name: Run isort
on:
- push
jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install apt dependencies
run: |
sudo apt update
# Install `libopenmpi` for MPI
sudo apt install openmpi-bin libopenmpi-dev
- run: pip install -e .[parallel]
- uses: isort/isort-action@master