Skip to content

feat: add documentation for new grassp functions #121

feat: add documentation for new grassp functions

feat: add documentation for new grassp functions #121

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install HDF5 and dependencies
run: |
sudo apt install -y libhdf5-dev
- name: Install the package
run: pip install -e .'[dev]'
- name: Run formatting/linting
run: make lint
- name: Run tests
run: make test