From 496c4664767194b1536c0954d49d212a71b3fbbc Mon Sep 17 00:00:00 2001 From: Wyatt Stanke Date: Wed, 28 Feb 2024 21:46:07 -0500 Subject: [PATCH] Add pytype installation step to test_pr workflow --- .github/workflows/test_pr.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_pr.yml b/.github/workflows/test_pr.yml index 558b0207..fb5ab31e 100644 --- a/.github/workflows/test_pr.yml +++ b/.github/workflows/test_pr.yml @@ -9,12 +9,10 @@ jobs: steps: - uses: actions/checkout@v4 - uses: ./.github/library/setup + - name: Install pytype + run: pip install -q pytype - name: Run pytype - run: | - python --version - pip install .[dev] - pip install -q gspread ipython - pytype + run: pytype . format: name: Check format with black runs-on: ubuntu-latest