Skip to content

Commit

Permalink
Improve documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
frankharkins committed Sep 21, 2023
1 parent d97458d commit c0a8da0
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/ecosystem-test-project.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,38 @@
name: Ecosystem | Test repository
# Clone repository and run `tox -epy39`, optionally force-installing a
# different version of Qiskit


on:
workflow_call:
inputs:
repo_name:
description: "GitHub repository owner-name/repo-name"
description: >
GitHub repository (e.g. `qiskit-community/qiskit-nature`)
type: string
required: true
test_type:
description: "'standard', 'stable', or 'dev'"
description: |
Type of test to run. Options are
- "standard" installs the version of Qiskit supported by the repository
- "stable" installs the latest stable version of Qiskit
- "development" installs the current development version of Qiskit
type: string
required: true

workflow_dispatch:
inputs:
repo_name:
description: "GitHub repository owner-name/repo-name"
description: >
GitHub repository (e.g. `qiskit-community/qiskit-nature`)
type: string
required: true
test_type:
description: "Type of test to run"
description: |
Type of test to run. Options are
- "standard" installs the version of Qiskit supported by the repository
- "stable" installs the latest stable version of Qiskit
- "development" installs the current development version of Qiskit
required: true
default: 'standard'
type: choice
Expand Down

0 comments on commit c0a8da0

Please sign in to comment.