Split dependency installation step in Actions

This commit is contained in:
Dennis Siemensma 2021-09-22 21:38:24 +02:00
parent 61de170a79
commit 88ef4f4921

View File

@ -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