firecow / gitlab-ci-local

Tired of pushing to test your .gitlab-ci.yml?
MIT License
2.15k stars 125 forks source link

Variable with null value is not supported #1095

Closed ANGkeith closed 6 months ago

ANGkeith commented 6 months ago
---
job:
  variables:
    FOO:
  script:
    - echo "$FOO"
---
variables:
  FOO:
job:
  script:
    - echo "$FOO"

Expected behavior Pipeline should run