Skip to content

Commit

Permalink
Run tests in Python 3.8 and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
henriquegemignani authored and Berserker66 committed Jan 21, 2022
1 parent 0c46cc6 commit 02e776b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 02e776b

Please sign in to comment.