Skip to content

fix(sparsify): materialize transport-matrix rows instead of pushing indicator columns #2946

fix(sparsify): materialize transport-matrix rows instead of pushing indicator columns

fix(sparsify): materialize transport-matrix rows instead of pushing indicator columns #2946

Workflow file for this run

name: Test
on:
schedule:
- cron: "0 5 1,15 * *"
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
permissions:
id-token: write # for codecov OIDC
contents: read
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.11", "3.12"]
include:
- os: macos-latest
python: "3.12"
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test
run: |
tox -e py${{ matrix.python }}
env:
PYTEST_ADDOPTS: -vv -n 2
- name: Upload coverage
uses: codecov/codecov-action@v6
with:
files: ./coverage.xml
flags: tests-${{ matrix.os }}-${{ matrix.python }}
name: unittests
env_vars: OS,PYTHON
fail_ci_if_error: false
use_oidc: true
check:
name: Tests pass
if: always()
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}