add ContractionTree.benchmark #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
run-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
env: [base] | |
include: | |
- os: macos-latest | |
python-version: '3.11' | |
env: mac | |
- os: windows-latest | |
python-version: '3.11' | |
env: win | |
- os: ubuntu-latest | |
python-version: '3.11' | |
env: no-oe | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: ci/requirements/py-${{ matrix.env }}.yml | |
environment-name: test-env | |
create-args: >- | |
python=${{ matrix.python-version }} | |
cache-environment: true | |
- name: Test with pytest | |
run: pytest --cov=cotengra tests/ --cov-report=xml tests | |
- name: Report to codecov | |
uses: codecov/codecov-action@v3 |