Skip to content

Commit 111756d

Browse files
committed
Ensure Python packages are avail on linting stage
1 parent 01126fb commit 111756d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/linting.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,16 @@ jobs:
3131
with:
3232
fetch-depth: 0
3333

34+
- name: Install Python 3.9
35+
uses: actions/setup-python@v4
36+
with:
37+
python-version: '3.9'
38+
39+
- name: Install required Python packages
40+
run: |
41+
pip install yamllib
42+
pip install typing
43+
3444
# ------------------------------------------------------------
3545
# Lint repository
3646
# ------------------------------------------------------------

0 commit comments

Comments
 (0)