We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda627a commit 2ee21b0Copy full SHA for 2ee21b0
.github/workflows/validate-schema.yml
@@ -20,11 +20,11 @@ jobs:
20
uses: actions/setup-python@v5
21
with:
22
python-version: "3.11"
23
+ cache: "pip"
24
+ cache-dependency-path: "requirements.txt"
25
- - name: Install jsonschema-cli
- run: |
26
- python -m pip install --upgrade pip
27
- pip install check-jsonschema
+ - name: Install dependencies
+ run: pip install -r requirements.txt
28
29
- name: Validate docker.config.yml against remote schema
30
run: |
requirements.txt
@@ -0,0 +1 @@
1
+jsonschema-cli
0 commit comments