We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb8f9ae commit 972f931Copy full SHA for 972f931
.github/workflows/dtbs_check.yml
@@ -13,14 +13,6 @@ jobs:
13
- name: Checkout
14
uses: actions/checkout@v4
15
16
- - name: Cache dt-schema
17
- uses: actions/cache@v4
18
- with:
19
- path: |
20
- ~/.cache/dtschema
21
- .venv/lib/python*/site-packages/dtschema
22
- key: ${{ runner.os }}-dtschema-${{ github.ref_name }}
23
-
24
- name: Install dependencies
25
run: |
26
sudo apt update
@@ -33,6 +25,14 @@ jobs:
33
pip install --upgrade pip
34
pip install dtschema
35
27
28
+ - name: Cache dt-schema
29
+ uses: actions/cache@v4
30
+ with:
31
+ path: |
32
+ ~/.cache/dtschema
+ .venv/lib/python*/site-packages/dtschema
+ key: ${{ runner.os }}-dtschema-${{ github.ref_name }}
+
36
- name: Run DT binding check
37
shell: bash
38
0 commit comments