From 68580325d06a2649a67a20e78dfc5d59f0cbd8bb Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 12 Oct 2021 14:06:36 +0100 Subject: [PATCH] CI extended --- .github/workflows/CI.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 83d85491..a0b0c751 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: ["ubuntu-latest", "macos-latest"] - python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"] + python-version: ["3.5", "3.6", "3.8"] steps: - name: Checkout source @@ -21,9 +21,14 @@ jobs: python-version: ${{ matrix.python-version }} architecture: x64 + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install run: | + python -m pip install --upgrade pip pip install -e . pip install pytest + - name: Run tests run: pytest