Skip to content

update to 0.12.1

update to 0.12.1 #114

Workflow file for this run

name: Testing Code
on:
push:
branches:
- main
pull_request:
jobs:
test_utils:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install -U pip
pip install pytest git+https://github.com/YanhuiJessica/cheb3.git#egg=cheb3
- name: Python ${{ matrix.python-version }} test utils
run: |
python3 -m pytest tests/utils