2020-08-04 02:10:16 -04:00
---
stage: Verify
group: Continuous Integration
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers
---
2020-09-25 14:09:46 -04:00
# CI Lint API
## Validate the CI YAML config
2017-08-21 02:38:09 -04:00
2020-04-21 11:21:10 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/5953) in GitLab 8.12.
2017-08-21 02:38:09 -04:00
2020-09-25 14:09:46 -04:00
Checks if CI/CD YAML configuration is valid. This endpoint validates basic CI/CD
configuration syntax. It doesn't have any namespace specific context.
2017-08-21 02:38:09 -04:00
2020-02-27 04:09:01 -05:00
```plaintext
2019-03-01 19:40:49 -05:00
POST /ci/lint
2017-08-21 02:38:09 -04:00
```
| Attribute | Type | Required | Description |
| ---------- | ------- | -------- | -------- |
2020-09-25 14:09:46 -04:00
| `content` | string | yes | The CI/CD configuration content. |
| `include_merged_yaml` | boolean | no | If the [expanded CI/CD configuration ](#yaml-expansion ) should be included in the response. |
2017-08-21 02:38:09 -04:00
2020-01-30 10:09:15 -05:00
```shell
2020-05-27 20:08:37 -04:00
curl --header "Content-Type: application/json" "https://gitlab.example.com/api/v4/ci/lint" --data '{"content": "{ \"image\": \"ruby:2.6\", \"services\": [\"postgres\"], \"before_script\": [\"bundle install\", \"bundle exec rake db:create\"], \"variables\": {\"DB_NAME\": \"postgres\"}, \"types\": [\"test\", \"deploy\", \"notify\"], \"rspec\": { \"script\": \"rake spec\", \"tags\": [\"ruby\", \"postgres\"], \"only\": [\"branches\"]}}"}'
2017-08-21 02:38:09 -04:00
```
2020-09-25 14:09:46 -04:00
Be sure to paste the exact contents of your GitLab CI/CD YAML config because YAML
is very sensitive about indentation and spacing.
2017-08-21 02:38:09 -04:00
Example responses:
2018-11-13 01:07:16 -05:00
- Valid content:
2017-08-21 02:38:09 -04:00
2019-07-09 03:16:17 -04:00
```json
{
"status": "valid",
"errors": []
}
```
2017-08-21 02:38:09 -04:00
2018-11-13 01:07:16 -05:00
- Invalid content:
2017-08-21 02:38:09 -04:00
2019-07-09 03:16:17 -04:00
```json
{
"status": "invalid",
"errors": [
"variables config should be a hash of key value pairs"
]
}
```
2017-08-21 02:38:09 -04:00
2018-11-13 01:07:16 -05:00
- Without the content attribute:
2017-08-21 02:38:09 -04:00
2019-07-09 03:16:17 -04:00
```json
{
"error": "content is missing"
}
```
2020-09-25 14:09:46 -04:00
### YAML expansion
The expansion only works for CI configurations that don't have local [includes ](../ci/yaml/README.md#include ).
Example contents of a `.gitlab-ci.yml` passed to the CI Lint API with
`include_merged_yaml` set as true:
```yaml
include:
remote: 'https://example.com/remote.yaml'
test:
stage: test
script:
- echo 1
```
Example contents of `https://example.com/remote.yaml` :
```yaml
another_test:
stage: test
script:
- echo 2
```
Example response:
```json
{
"status": "valid",
"errors": [],
"merged_config": "---\n:another_test:\n :stage: test\n :script: echo 2\n:test:\n :stage: test\n :script: echo 1\n"
}
```