Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 536 Bytes

02_01-single-test-job.md

File metadata and controls

25 lines (20 loc) · 536 Bytes

Configuring CI/CD pipelines

Continuous Integration

Minimum viable GitLab CI config

Minimum job definition:

  • job name
  • external command to run

Example:

i_love_tests:

  script: /bin/echo run tests 

Configuring CI/CD pipelines

Continuous Integration

Minimum viable GitLab CI config

For the above minimum job definition, GitLab UI will render a pipeline showing:

  • the stage that the job belongs to (default stage is "test")
  • job name
  • outcome

single test job