Add default on_space argument to rep-level to_dense (#806) (#831) #182
This file contains hidden or 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
| # This workflow runs a full test suite on beta and master | |
| # This includes all versions of supported Python, all OSes, and all test subsets | |
| name: Build and run tests (beta & master) | |
| on: | |
| push: | |
| branches: [ "beta", "master" ] | |
| workflow_dispatch: # Allow manual running from GitHub | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] | |
| use-cython: ['true', 'false'] | |
| uses: ./.github/workflows/reuseable-main.yml | |
| name: Run pyGSTi tests | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python-version }} | |
| run-coverage: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13' && matrix.use-cython == 'true' }} # cover exactly one job | |
| use-cython: ${{ matrix.use-cython }} | |
| run-unit-tests: 'true' | |
| run-integration-tests: 'true' | |
| run-extra-tests: 'true' | |
| # Run the docs notebook regression on exactly one job (Linux + Python 3.13 + | |
| # Cython). The suite is slow, so we don't fan it out across the full OS/Python matrix. | |
| run-notebook-tests: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13' && matrix.use-cython == 'true' }} | |