From 5a6340b1bbe911bc6e2a91dafe11fb644407dd6a Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Tue, 25 Jun 2024 11:50:14 -0700 Subject: [PATCH] Install Pooch before running pylint in Actions --- .github/workflows/style.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 87e9d4db..b8a4421b 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -32,6 +32,10 @@ jobs: - name: Install requirements run: python -m pip install -r env/requirements-style.txt + # Need to install Pooch to allow pylint to run + - name: Install Pooch + run: python -m pip install . + - name: List installed packages run: python -m pip freeze