From d216116dd2afabea8e35c5c6f641d5c2289cfeec Mon Sep 17 00:00:00 2001 From: Baptiste Jonglez Date: Sun, 11 Jul 2021 09:52:09 +0200 Subject: [PATCH] CI: add more minimal variants --- .github/workflows/test-docs.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml index 55db9caa..1f56c422 100644 --- a/.github/workflows/test-docs.yml +++ b/.github/workflows/test-docs.yml @@ -37,17 +37,29 @@ jobs: fail-fast: false matrix: python-version: [3.6, 3.7, 3.8, 3.9] - database: [sqlite] dependencies: [normal] + database: [sqlite] # Test other databases only with one version of Python (Debian buster has 3.7) include: - python-version: 3.7 + dependencies: normal database: postgresql - python-version: 3.7 + dependencies: normal + database: mariadb + # Try a few variants with the minimal versions supported + - python-version: 3.6 + dependencies: minimal + database: sqlite + - python-version: 3.7 + dependencies: minimal + database: postgresql + - python-version: 3.7 + dependencies: minimal database: mariadb - # Try with the minimal versions supported - python-version: 3.9 dependencies: minimal + database: sqlite steps: - uses: actions/checkout@v2