We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcf8c8b commit 1e01a65Copy full SHA for 1e01a65
.github/workflows/compliance.yml
@@ -16,11 +16,10 @@ jobs:
16
if: ${{ !contains(github.actor, 'renovate') }}
17
18
steps:
19
- - name: Install requirements
+ - name: Installation
20
run: |
21
- apt-get update
22
- apt-get install --no-install-recommends -y libmagic1 git
23
- pip install unidiff yamllint junitparser python-magic west lxml gitlint
+ apt-get update && apt-get install --no-install-recommends -y libmagic1 git
+ pip install west gitlint
24
25
- name: Checkout the code
26
uses: actions/checkout@v4
@@ -39,6 +38,10 @@ jobs:
39
38
fi
40
west update -o=--depth=1 -n
41
+ - name: Install zephyr requirements
42
+ run: |
43
+ pip install -r zephyr/scripts/requirements-compliance.txt
44
+
45
- name: Run Compliance Tests
46
id: compliance
47
shell: bash
0 commit comments