File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,17 @@ jobs:
45
45
php_versions : 8.2
46
46
mysql_versions : ' 8.1'
47
47
-
48
- operating_system : ' ubuntu-22 .04'
48
+ operating_system : ' ubuntu-24 .04'
49
49
php_versions : 8.2
50
50
mysql_versions : ' mariadb-11.4'
51
51
-
52
52
operating_system : ' ubuntu-22.04'
53
53
php_versions : 8.3
54
54
mysql_versions : ' 8.2'
55
+ -
56
+ operating_system : ' ubuntu-24.04'
57
+ php_versions : 8.3
58
+ mysql_versions : ' mariadb-11.5'
55
59
56
60
runs-on : ' ${{ matrix.operating_system }}'
57
61
64
68
65
69
- name : ' Setup MySQL'
66
70
run : |
67
- mysql -e 'SELECT version();' -u${{ env.DB_USER }} -h127.0.0.1 - p${{ env.DB_PASSWORD }}
68
- mysql -e 'CREATE DATABASE ${{ env.DB_DATABASE }};' -u${{ env.DB_USER }} -h127.0.0.1 - p${{ env.DB_PASSWORD }}
71
+ mysql -e 'SELECT version();' -u${{ env.DB_USER }} -p${{ env.DB_PASSWORD }} --ssl-mode=DISABLED
72
+ mysql -e 'CREATE DATABASE ${{ env.DB_DATABASE }};' -u${{ env.DB_USER }} -p${{ env.DB_PASSWORD }}
69
73
70
74
- name : ' Setup PHP'
71
75
uses : shivammathur/setup-php@v2
83
87
84
88
- name : Run profiling
85
89
if : success() || failure()
86
- run : php bin/codecept run -g profile -d
90
+ run : php bin/codecept run -g profile -d
You can’t perform that action at this time.
0 commit comments