Skip to content

add optimize=True to all np.einsum calls #559

add optimize=True to all np.einsum calls

add optimize=True to all np.einsum calls #559

Workflow file for this run

name: Build
on:
push:
paths:
- 'cgc/**'
- 'tests/**'
- 'pyproject.toml'
- 'setup.py'
pull_request:
branches:
- master
jobs:
build:
name: Build for ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Python info
shell: bash -l {0}
run: |
which python
python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install .[dev]
- name: Test
run: |
pytest -v