CI extended

This commit is contained in:
Fabian Joswig 2021-10-12 14:06:36 +01:00
parent 7af1768a85
commit 68580325d0

View file

@ -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