actions: footprint-tracking: install gitpython

install missing packages for the workflow to run.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2021-07-21 17:07:03 +03:00
parent 157509b37a
commit c206c8fb98

View file

@ -7,6 +7,7 @@ on:
push:
paths:
- 'VERSION'
- '.github/workflows/footprint-tracking.yml'
tags:
# only publish v* tags, do not care about zephyr-v* which point to the
# same commit
@ -36,6 +37,9 @@ jobs:
- name: Update PATH for west
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install pip packages
run: |
sudo pip3 install -U setuptools wheel pip gitpython
- name: checkout
uses: actions/checkout@v2