From 2f31820e1f9fbd629daa2ef003c728ada3e39bc2 Mon Sep 17 00:00:00 2001 From: Bruno Rodrigues Date: Wed, 6 Dec 2023 01:53:38 -0300 Subject: [PATCH] add mypy install --- .github/workflows/plotly_ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/plotly_ci.yaml b/.github/workflows/plotly_ci.yaml index b8409cc..e36dd54 100644 --- a/.github/workflows/plotly_ci.yaml +++ b/.github/workflows/plotly_ci.yaml @@ -39,8 +39,9 @@ jobs: - name: Run formatter run: make lint - - name: Install missing stubs - run: mypy --install-types --non-interactive + - run: | + pip3 install mypy + mypy --install-types --non-interactive - name: Run checks run: make checks