Skip to content

Improvements to execution modes docs #6687

Improvements to execution modes docs

Improvements to execution modes docs #6687

Workflow file for this run

# This code is a Qiskit project.
#
# (C) Copyright IBM 2023.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
name: Lint
on: [pull_request, merge_group]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
if: github.repository_owner == 'Qiskit'
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Node.js dependencies
run: npm ci
- name: File metadata
run: npm run check:metadata
- name: Spellcheck
run: npm run check:spelling
- name: Check Qiskit bot config
run: npm run check:qiskit-bot
- name: Check Patterns index
run: npm run check:patterns-index
- name: Internal link checker
run: npm run check:internal-links
- name: Check orphaned pages
run: npm run check:orphan-pages
- name: Formatting
run: npm run check:fmt
- name: Typecheck
run: npm run typecheck
- name: Infrastructure tests
run: npm test
- name: Get all changed docs files
id: all-changed-files
uses: tj-actions/changed-files@af2816c65436325c50621100d67f6e853cd1b0f1
with:
files: docs/**/*.{md,mdx,ipynb}
separator: "\n"
- name: Get all changed notebooks
id: all-changed-notebooks
uses: tj-actions/changed-files@af2816c65436325c50621100d67f6e853cd1b0f1
with:
files: "docs/**/*.ipynb"
separator: "\n"
- name: Pull preview image
if: steps.all-changed-files.outputs.any_changed == 'true'
run: ./start --pull-only
- name: Start local Docker preview
if: steps.all-changed-files.outputs.any_changed == 'true'
run: |
./start --apis &
sleep 1
- name: Check that pages render
if: steps.all-changed-files.outputs.any_changed == 'true'
run: |
echo "${{ steps.all-changed-files.outputs.all_changed_files }}" > changed.txt
npm run check:pages-render -- --from-file changed.txt
- name: Setup Python environment
uses: ./.github/actions/set-up-notebook-testing
- name: nb-tester tests
run: tox -e nb-tester
- name: Lint notebooks
shell: python
run: |
import subprocess, sys
files = """${{ steps.all-changed-notebooks.outputs.all_changed_notebooks }}"""
args = ["tox", "-e", "lint", "--"] + files.split("\n")
try:
subprocess.run(args, check=True)
except:
print(
"To fix, install `tox` and run `tox -e fix`.\n\n"
"Alternatively, you can download the fixed notebook from CI by going to this PR's "
"\"Execute notebooks\" job, clicking \"Summary\" on the upper-left "
"of this page, and downloading the \"Executed notebooks\" artifact."
"\n\n"
"For more information, see https://github.com/Qiskit/documentation/blob/main/README.md#lint-notebooks"
)
sys.exit(1)