From 02e776bfe56a953ac1cc6c78c9c399e9dc8df0cb Mon Sep 17 00:00:00 2001 From: Henrique Gemignani Passos Lima Date: Fri, 21 Jan 2022 22:52:16 +0100 Subject: [PATCH] Run tests in Python 3.8 and 3.9 --- .github/workflows/unittests.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 65c01e3b..0481e950 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -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