Skip to content

Commit

Permalink
Merge pull request #474 from UW-GAC/maint/maria-db-10.5
Browse files Browse the repository at this point in the history
Add MariaDB 10.5 to CI tests
  • Loading branch information
amstilp authored Apr 1, 2024
2 parents 4fc0126 + e47278b commit 5bc4bb9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,19 @@ jobs:
python-version: ["3.8", "3.12"]
django-version: ["3.2", "4.2"]
backend: ["sqlite", "mysql"]
mariadb-version: ["10.4", "10.5"]
exclude:
- backend: sqlite
mariadb-version: "10.5"

runs-on: ubuntu-latest
env:
PYTEST_ADDOPTS: "--maxfail=20" # Stop testing after too many failures.
TEST_ENV: "test-${{ matrix.backend }}.py${{ matrix.python-version }}-${{ matrix.django-version }}"

services:
database:
image: mariadb:10.4
image: mariadb:${{ matrix.mariadb-version }}
env:
MYSQL_ROOT_PASSWORD: rootpw
MYSQL_DATABASE: test
Expand Down

0 comments on commit 5bc4bb9

Please sign in to comment.