diff options
author | Valery Piashchynski <[email protected]> | 2024-10-24 09:37:48 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-10-24 09:37:48 +0200 |
commit | 07e55997d2509cafa9c838616cc9565e1436bec9 (patch) | |
tree | 04c6e28eb6da24821e8e12beae98b72614681f5a /.github/workflows | |
parent | e49a95f7c1d9a2a0e21280e2e268fda72ab9e444 (diff) | |
parent | 9662e43f6bd40e47084b7e7b0da936b5e26c85fa (diff) |
[#2030]: feature: Tightly couple all JSON schemas and code/plugins
Diffstat (limited to '.github/workflows')
-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) |