summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastian Venthur <mail@venthur.de>2021-03-17 10:27:28 +0100
committerGitHub <noreply@github.com>2021-03-17 10:27:28 +0100
commitfca0c5ed564500b7d69e33cb7ece5c24f40100a2 (patch)
treef7761b93e6b5aa3093ff70e4dd7edda0c4fab5b4
parentf8924961bdcc042db8bd286f22ba60c787fd8bb7 (diff)
downloadfeedgenerator-fca0c5ed564500b7d69e33cb7ece5c24f40100a2.tar.gz
Install project & dependencies in CI; also test on Python 3.9 (#24)
-rw-r--r--.github/workflows/main.yml4
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