From 478b7cdec316bca2dd63b69c4dc3053d8a1280b3 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 29 Jun 2021 14:29:26 +0100 Subject: [PATCH] Test all the Python versions on MacOS and Windows --- .github/workflows/tests.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b99342622..c56db791a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -72,11 +72,14 @@ jobs: fail-fast: false matrix: include: + - {impl: python, python: 3.6} + - {impl: python, python: 3.7} + - {impl: python, python: 3.8} + - {impl: python, python: 3.9} - {impl: c, python: 3.6} - {impl: c, python: 3.7} - {impl: c, python: 3.8} - {impl: c, python: 3.9} - - {impl: python, python: 3.9} env: PSYCOPG_IMPL: ${{ matrix.impl }} @@ -118,10 +121,13 @@ jobs: fail-fast: false matrix: include: - # - {impl: c, python: 3.6} - # - {impl: c, python: 3.7} + - {impl: c, python: 3.6} + - {impl: c, python: 3.7} - {impl: c, python: 3.8} - # - {impl: c, python: 3.9} + - {impl: c, python: 3.9} + - {impl: python, python: 3.6} + - {impl: python, python: 3.7} + - {impl: python, python: 3.8} - {impl: python, python: 3.9} env: -- 2.47.3