Ensure Python packages are avail on linting stage

This commit is contained in:
cytopia
2022-11-29 06:16:12 +01:00
parent 01126fb861
commit 111756d4ae

View File

@@ -31,6 +31,16 @@ jobs:
with:
fetch-depth: 0
- name: Install Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install required Python packages
run: |
pip install yamllib
pip install typing
# ------------------------------------------------------------
# Lint repository
# ------------------------------------------------------------