From fca0c5ed564500b7d69e33cb7ece5c24f40100a2 Mon Sep 17 00:00:00 2001 From: Bastian Venthur Date: Wed, 17 Mar 2021 10:27:28 +0100 Subject: Install project & dependencies in CI; also test on Python 3.9 (#24) --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 66ffb9b..06f57fd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 @@ -21,6 +21,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Upgrade Pip run: python -m pip install -U pip + - name: Install package and dependencies + run: python -m pip install -e . - name: Test with pytest run: | python -m pip install pytest -- cgit v1.2.1