Skip to content

yeah sundials and python 3.12 .... #2

yeah sundials and python 3.12 ....

yeah sundials and python 3.12 .... #2

Workflow file for this run

name: pipeline
on:
push:
branches:
- master
- dev
- add-dead-end-filtration
- test_ci
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ./[testing]
- name: Test
run: |
pytest