mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
CI: add more minimal variants
This commit is contained in:
parent
7e6776403f
commit
d216116dd2
1 changed files with 14 additions and 2 deletions
16
.github/workflows/test-docs.yml
vendored
16
.github/workflows/test-docs.yml
vendored
|
@ -37,17 +37,29 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.6, 3.7, 3.8, 3.9]
|
python-version: [3.6, 3.7, 3.8, 3.9]
|
||||||
database: [sqlite]
|
|
||||||
dependencies: [normal]
|
dependencies: [normal]
|
||||||
|
database: [sqlite]
|
||||||
# Test other databases only with one version of Python (Debian buster has 3.7)
|
# Test other databases only with one version of Python (Debian buster has 3.7)
|
||||||
include:
|
include:
|
||||||
- python-version: 3.7
|
- python-version: 3.7
|
||||||
|
dependencies: normal
|
||||||
database: postgresql
|
database: postgresql
|
||||||
- python-version: 3.7
|
- 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
|
database: mariadb
|
||||||
# Try with the minimal versions supported
|
|
||||||
- python-version: 3.9
|
- python-version: 3.9
|
||||||
dependencies: minimal
|
dependencies: minimal
|
||||||
|
database: sqlite
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
Loading…
Reference in a new issue