Skip to content

Version bump.

Version bump. #74

Workflow file for this run

# This workflow will install Python dependencies and run tests with a variety of Python versions
name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install fiberoripy
run: |
pip install --upgrade pip
pip install --upgrade setuptools pytest numpy matplotlib scipy ipympl
pip install .
- name: Test with pytest
run: |
pytest