Skip to content

Commit

Permalink
feat: added more versions to check
Browse files Browse the repository at this point in the history
  • Loading branch information
krowinski committed May 14, 2024
1 parent a60da9f commit 157deb4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: PHP Tests
on: [push, pull_request]
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
php: [ '8.2' ]
mysql-version: [ '5.7', '8.0', '8.4' ]
matrix:
php: [ '8.2', '8.3' ]
mysql-version: [ 'mysql:5.5', 'mysql:5.6', 'mysql:5.7', 'mysql:8.0', 'mysql:8.4', 'mariadb:5.5', 'mariadb:10.0', 'mariadb:10.1', 'percona:5.7', 'percona:8.0' ]

services:
mysql:
image: "mysql:${{ matrix.mysql-version }}"
image: "${{ matrix.mysql-version }}"
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: mysqlreplication_test
Expand Down

0 comments on commit 157deb4

Please sign in to comment.