script

Commands to execute in the job. Required for all jobs.

Supported: string, array

Examples

Single command

job:
  script: echo "script string"

Multiple commands

job:
  script:
    - echo "script step one"
    - echo "script step two"