Skip to content

fix(reshape): fix reshape with head int1 as trivial #388

fix(reshape): fix reshape with head int1 as trivial

fix(reshape): fix reshape with head int1 as trivial #388

Workflow file for this run

name: Run pytest
on:
- pull_request
- push
permissions:
contents: read
jobs:
pytest:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Show Python
run: |
python -c "import sys, platform; print(f'Executable: {sys.executable}\nVersion: {platform.python_version()}\nImplementation: {platform.python_implementation()}\nPlatform: {platform.platform()}')"
- name: Install dependencies
run: pip install '.[dev]'
- name: Run pytest
run: pytest --cov=grassmann_tensor --cov-branch --cov-report=xml
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: os-${{ matrix.os }}, python-${{ matrix.python-version }}