From 88ef4f4921ba9ac7ab6ba79384b69ec89b47042c Mon Sep 17 00:00:00 2001 From: Dennis Siemensma Date: Wed, 22 Sep 2021 21:38:24 +0200 Subject: [PATCH] Split dependency installation step in Actions --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 95abb2c..5f6b2b0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,10 +35,11 @@ jobs: key: pip-${{ matrix.python-version }}-${{ hashFiles('setup.py', 'tox.ini') }} restore-keys: pip-${{ matrix.python-version }}- + - name: Install dependencies + run: pip install tox + - name: Run tests - run: | - pip install tox - tox + run: tox - name: Code coverage upload uses: codecov/codecov-action@v1