Skip to content

Update jax requirement from <=0.4.37,>=0.3.2 to >=0.3.2,<=0.4.38 #68

Update jax requirement from <=0.4.37,>=0.3.2 to >=0.3.2,<=0.4.38

Update jax requirement from <=0.4.37,>=0.3.2 to >=0.3.2,<=0.4.38 #68

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
- 'devtools/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
unit_tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Test with pytest
run: |
pwd
lscpu
python -m pytest -v --durations=0 --cov-report xml:cov.xml --cov-config=setup.cfg --cov=interpax/ --db ./prof.db
- name: save coverage file and plot comparison results
if: always()
uses: actions/upload-artifact@v4
with:
name: unit_test_artifact_${{ matrix.python-version }}
path: |
./cov.xml
./prof.db
- name: Upload coverage
id : codecov
uses: codecov/codecov-action@v5
with:
name: codecov-umbrella
files: ./cov.xml
fail_ci_if_error: true
verbose: true