From 111756d4ae0a9bc80b61500e046897bf82d6a074 Mon Sep 17 00:00:00 2001 From: cytopia Date: Tue, 29 Nov 2022 06:16:12 +0100 Subject: [PATCH] Ensure Python packages are avail on linting stage --- .github/workflows/linting.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 0f66e78..8007a14 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -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 # ------------------------------------------------------------