pipechecker 0.2.6

CI/CD Pipeline Auditor - Catch errors before you push
Documentation
stages:
  - build
  - test
  - deploy

build_job:
  stage: build
  script:
    - echo "Building..."

test_job:
  stage: test
  needs: [build_job]
  script:
    - echo "Testing..."

deploy_job:
  stage: deploy
  needs: [test_job]
  script:
    - echo "Deploying..."