Run tests in Python 3.8 and 3.9

This commit is contained in:
Henrique Gemignani Passos Lima 2022-01-21 22:52:16 +01:00 committed by Fabian Dill
parent 0c46cc6843
commit 02e776bfe5
1 changed files with 11 additions and 2 deletions

View File

@ -9,13 +9,22 @@ jobs:
build:
runs-on: ubuntu-latest
name: Test Python ${{ matrix.python.version }}
strategy:
fail-fast: false
matrix:
python:
- {version: '3.8'}
- {version: '3.9'}
#- {version: '3.10'}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python ${{ matrix.python.version }}
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: ${{ matrix.python.version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip