From 69bbf6a957dfd74751e9532591837d22a2fba250 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 8 Jul 2021 13:53:28 -0400 Subject: [PATCH] Install test deps and py3.9 for type check job --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2f6237..e6c19ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,15 +6,19 @@ jobs: mypy: name: 'MyPy' runs-on: ubuntu-latest + steps: - name: Checkout uses: actions/checkout@v2 + - name: Setup python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.9' + - name: Install dependencies - run: pip install -U . --upgrade-strategy eager + run: pip install -U . --upgrade-strategy eager -r requirements-test.txt + - name: Run MyPy check run: mypy tractor/ --ignore-missing-imports