From cc48bd7302a9b852fc1712a88cf59d91b2caf946 Mon Sep 17 00:00:00 2001 From: Bas van Beek Date: Tue, 2 Jun 2020 23:13:29 +0200 Subject: [PATCH] Update pythonpackage.yml --- .github/workflows/pythonpackage.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 4a4b712..0965cdf 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -24,16 +24,18 @@ jobs: - name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} uses: actions/setup-python@v1 with: - os: ${{ matrix.os }} python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: pip install -e .[test] + - name: Python info run: | which python python --version - - name: Install dependencies - run: pip install -e .[test] + - name: Installed packages + run: pip list - name: Test with pytest run: pytest