Remove need for num_features before fitting
#810
Workflow file for this run
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
| name: Documentation check | |
| on: | |
| - pull_request | |
| jobs: | |
| doc_checks: | |
| runs-on: ubuntu-latest | |
| env: | |
| QISKIT_SETTINGS: ${{github.workspace}}/docs/qiskit_settings.conf | |
| steps: | |
| - name: Cancel Workflow Action | |
| uses: styfle/cancel-workflow-action@0.11.0 | |
| - uses: actions/checkout@v4 | |
| - uses: sQUlearn/sphinx-action@master | |
| with: | |
| docs-folder: "docs/" | |
| pre-build-command: "pip3 install .[docs]" | |
| build-command: "sphinx-build -b html . _build -W --keep-going" |