workflows

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

The list of all the reusable workflows is available in this repository.

How to use a reusable workflow ?

If you want to use the reusable workflow deploy-sphinx-docs-to-ghpages.yml, all you have to do is to add the uses keyword in a job of your workflow, for example

jobs:
  call-workflow-in-local-repo:
    uses: qiboteam/workflows/.github/workflows/deploy-sphinx-docs-to-ghpages.yml@main
    with:
      python-version: 3.9
      package-manager: 'pip'
      dependency-path: '**/setup.py'