diff options
author | Nicolai Cornelis <[email protected]> | 2024-10-19 06:42:37 +0200 |
---|---|---|
committer | Nicolai Cornelis <[email protected]> | 2024-10-21 19:35:32 +0200 |
commit | 570c265c01a2a22b8cdf81312638dbf58a7e77ea (patch) | |
tree | 834fe1398982e7f019242bff722390f53bb1617c /.github | |
parent | e49a95f7c1d9a2a0e21280e2e268fda72ab9e444 (diff) |
Clean up JSON schema validation
Update ajv cli
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bc5697fe..aa10b71a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,7 +24,7 @@ jobs: run: npm install -g ajv-cli # Package page: <https://www.npmjs.com/package/ajv-cli> - name: Run linter - run: ajv validate --all-errors --verbose -s ./schemas/config/3.0.schema.json -d ./.rr.yaml + run: ajv validate --all-errors --verbose -s ./schemas/config/3.0.schema.json --spec=draft2019 -d ./.rr.yaml golangci-lint: name: Golang-CI (lint) |