Skip to content

Commit 2ee21b0

Browse files
committed
Adding requirements.txt
1 parent eda627a commit 2ee21b0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/validate-schema.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
uses: actions/setup-python@v5
2121
with:
2222
python-version: "3.11"
23+
cache: "pip"
24+
cache-dependency-path: "requirements.txt"
2325

24-
- name: Install jsonschema-cli
25-
run: |
26-
python -m pip install --upgrade pip
27-
pip install check-jsonschema
26+
- name: Install dependencies
27+
run: pip install -r requirements.txt
2828

2929
- name: Validate docker.config.yml against remote schema
3030
run: |

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jsonschema-cli

0 commit comments

Comments
 (0)