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
---
2019-08-23 04:50:24 -04:00
# Validate the `.gitlab-ci.yml` (API)
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
2019-02-15 04:39:23 -05:00
Checks if your `.gitlab-ci.yml` file is valid.
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 |
| ---------- | ------- | -------- | -------- |
2019-08-23 04:50:24 -04:00
| `content` | string | yes | the `.gitlab-ci.yaml` content|
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
```
Be sure to copy paste the exact contents of `.gitlab-ci.yml` as YAML is very picky about indentation and spaces.
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"
}
```