We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50d5e96 commit b7ee484Copy full SHA for b7ee484
.github/workflows/push.yml
@@ -43,6 +43,22 @@ env:
43
jobs:
44
LINUX_X64:
45
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
46
+ services:
47
+ mysql:
48
+ image: mysql:8.3
49
+ ports:
50
+ - 3306:3306
51
+ env:
52
+ MYSQL_DATABASE: test
53
+ MYSQL_ROOT_PASSWORD: root
54
+ postgres:
55
+ image: postgres
56
57
+ - 5432:5432
58
59
+ POSTGRES_USER: postgres
60
+ POSTGRES_PASSWORD: postgres
61
+ POSTGRES_DB: test
62
strategy:
63
fail-fast: false
64
matrix:
0 commit comments