Home

Gitlab#

include:
  - remote: https://gitlab.com/repo/dir/-/raw/version/jobs.yml

stages:
  - test
  - deploy
  - apply

test:
  stage: test
  extends: [.gj_earthly]
  script:
    - earthly --no-output +test
  only:
    - branches
  except:
    - production

Basic Syntax: https://docs.gitlab.com/ee/ci/yaml/