Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 877 Bytes

File metadata and controls

29 lines (22 loc) · 877 Bytes

The repository qiboteam/workflow is a collection of reusable workflows used across the qiboteam organization. The workflows are availaible in the folder github/workflows.

Available workflows

How to run a reusable workflow ?

Using docs.yml as an example, the only action required is to add the uses keyword in a job of the caller workflow, e.g.

jobs:
  caller-job:
    uses: qiboteam/workflows/.github/workflows/docs.yml@main
    with:
      python-version: "3.11"

Actions

For workflows developers: some workflows' building blocks are split as individual actions.