Use sp.issparse instead of type check in tests #528
Workflow file for this run
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
# Regular QA workflow (pull requests, main branch) | |
name: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
code-quality: | |
uses: ./.github/workflows/code-quality.yml | |
python-tests: | |
uses: ./.github/workflows/python-tests.yml | |
needs: [code-quality] | |
doc-tests: | |
uses: ./.github/workflows/doc-tests.yml | |
needs: [python-tests] | |
doc-build: | |
uses: ./.github/workflows/doc-build.yml | |
needs: [python-tests] |