diff options
| -rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 3 insertions, 1 deletions
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 |
