b5 - store parameters on instance for PointProcess case #21
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: Run isort | |
on: | |
- push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
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 . | |
- uses: isort/isort-action@master |