File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99 services :
1010 postgres :
11- image : postgres:15
11+ image : ${{ matrix.database == 'pgsql' && ' postgres:16' || '' }}
1212 env :
1313 POSTGRES_USER : ' postgres'
1414 POSTGRES_HOST_AUTH_METHOD : ' trust'
1717 options : --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
1818
1919 mariadb :
20- image : mariadb:10
20+ image : ${{ matrix.database == ' mariadb' && 'mariadb :10' || '' }}
2121 env :
2222 MYSQL_USER : ' root'
2323 MYSQL_ALLOW_EMPTY_PASSWORD : " true"
5252
5353 steps :
5454 - name : Check out repository code
55- uses : actions/checkout@v4
55+ uses : actions/checkout@v6
5656 with :
5757 path : plugin
5858
6161 with :
6262 php-version : ${{ matrix.php }}
6363 extensions : ${{ matrix.extensions }}
64- ini-values : max_input_vars=5000
64+ ini-values : max_input_vars=5000, opcache.enable_cli=1
65+
6566 # If you are not using code coverage, keep "none". Otherwise, use "pcov" (Moodle 3.10 and up) or "xdebug".
6667 # If you try to use code coverage with "none", it will fallback to phpdbg (which has known problems).
6768 coverage : none
You can’t perform that action at this time.
0 commit comments