ÿØÿà JFIF    ÿÛ „  ( %"1!%)+...383,7(-.+  -+++--++++---+-+-----+---------------+---+-++7-----ÿÀ  ß â" ÿÄ     ÿÄ H    !1AQaq"‘¡2B±ÁÑð#R“Ò Tbr‚²á3csƒ’ÂñDS¢³$CÿÄ   ÿÄ %  !1AQa"23‘ÿÚ   ? ôÿ ¨pŸªáÿ —åYõõ\?àÒü©ŠÄï¨pŸªáÿ —åYõõ\?àÓü©ŠÄá 0Ÿªáÿ Ÿå[úƒ ú®ði~TÁbqÐ8OÕpÿ ƒOò¤Oè`–RÂáœá™êi€ßÉ< FtŸI“öÌ8úDf´°å}“¾œ6  öFá°y¥jñÇh†ˆ¢ã/ÃÐ:ªcÈ "Y¡ðÑl>ÿ ”ÏËte:qž\oäŠe÷󲍷˜HT4&ÿ ÓÐü6ö®¿øþßèô Ÿ•7Ñi’•j|“ñì>b…þS?*Óôÿ ÓÐü*h¥£ír¶ü UãS炟[AÐaè[ûª•õ&õj?†Éö+EzP—WeÒírJFt ‘BŒ†Ï‡%#tE Øz ¥OÛ«!1›üä±Í™%ºÍãö]°î(–:@<‹ŒÊö×òÆt¦ãº+‡¦%ÌÁ²h´OƒJŒtMÜ>ÀÜÊw3Y´•牋4ǍýʏTì>œú=Íwhyë,¾Ôò×õ¿ßÊa»«þˆѪQ|%6ž™A õ%:øj<>É—ÿ Å_ˆCbõ¥š±ý¯Ýƒï…¶|RëócÍf溪“t.СøTÿ *Ä¿-{†çàczůŽ_–^XþŒ±miB[X±d 1,é”zEù»& î9gœf™9Ð'.;—™i}!ôšåîqêÛ٤ёý£½ÆA–àôe"A$˝Úsäÿ ÷Û #°xŸëí(l »ý3—¥5m! rt`†0~'j2(]S¦¦kv,ÚÇ l¦øJA£Šƒ J3E8ÙiŽ:cÉžúeZ°€¯\®kÖ(79«Ž:¯X”¾³Š&¡* ….‰Ž(ÜíŸ2¥ª‡×Hi²TF¤ò[¨íÈRëÉ䢍mgÑ.Ÿ<öäS0í„ǹÁU´f#Vß;Õ–…P@3ío<ä-±»Ž.L|kªÀê›fÂ6@»eu‚|ÓaÞÆŸ…¨ááå>åŠ?cKü6ùTÍÆ”†sĤÚ;H2RÚ†õ\Ö·Ÿn'¾ ñ#ºI¤Å´%çÁ­‚â7›‹qT3Iï¨ÖÚ5I7Ë!ÅOóŸ¶øÝñØôת¦$Tcö‘[«Ö³šÒ';Aþ ¸èíg A2Z"i¸vdÄ÷.iõ®§)¿]¤À†–‡É&ä{V¶iŽ”.Ó×Õÿ û?h¬Mt–íª[ÿ Ñÿ ÌV(í}=ibÔ¡›¥¢±b Lô¥‡piη_Z<‡z§èŒ)iÖwiÇ 2hÙ3·=’d÷8éŽ1¦¸c¤µ€7›7Ø ð\á)} ¹fËí›pAÃL%âc2 í§æQz¿;T8sæ°qø)QFMð‰XŒÂ±N¢aF¨…8¯!U  Z©RÊ ÖPVÄÀÍin™Ì-GˆªÅËŠ›•zË}º±ŽÍFò¹}Uw×#ä5B¤{î}Ð<ÙD é©¤&‡ïDbàÁôMÁ.name: Core on: push: branches-ignore: - master - MOODLE_[0-9]+_STABLE tags-ignore: - v[0-9]+.[0-9]+.[0-9]+* workflow_dispatch: inputs: phpunit_extra_options: description: Additional options to apply to PHPUnit required: false default: '' env: php: 8.2 jobs: Grunt: runs-on: ubuntu-22.04 steps: - name: Checking out code uses: actions/checkout@v4 - name: Configuring node & npm uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' - name: Installing node stuff run: npm install - name: Running grunt run: npx grunt - name: Looking for uncommitted changes # Add all files to the git index and then run diff --cached to see all changes. # This ensures that we get the status of all files, including new files. # We ignore npm-shrinkwrap.json to make the tasks immune to npm changes. run: | git add . git reset -- npm-shrinkwrap.json git diff --cached --exit-code PHPUnit: runs-on: ${{ matrix.os }} services: exttests: image: moodlehq/moodle-exttests ports: - 8080:80 redis: image: redis ports: - 6379:6379 strategy: fail-fast: false matrix: include: # MySQL builds always run with the lowest PHP supported version. - os: ubuntu-22.04 php: 8.0 extensions: db: mysqli # PostgreSQL builds always run with the highest PHP supported version. - os: ubuntu-22.04 php: 8.2 db: pgsql steps: - name: Setting up DB mysql if: ${{ matrix.db == 'mysqli' }} uses: moodlehq/mysql-action@v1 with: collation server: utf8mb4_bin mysql version: 8.0 mysql database: test mysql user: test mysql password: test use tmpfs: true tmpfs size: '1024M' extra conf: --skip-log-bin - name: Setting up DB pgsql if: ${{ matrix.db == 'pgsql' }} uses: m4nu56/postgresql-action@v1 with: postgresql version: 13 postgresql db: test postgresql user: test postgresql password: test - name: Configuring git vars uses: rlespinasse/github-slug-action@v4 - name: Setting up PHP ${{ matrix.php }} uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: ${{ matrix.extensions }} ini-values: max_input_vars=5000 coverage: none - name: Checking out code from ${{ env.GITHUB_REF_SLUG }} uses: actions/checkout@v4 - name: Setting up PHPUnit env: dbtype: ${{ matrix.db }} run: | echo "pathtophp=$(which php)" >> $GITHUB_ENV # Inject installed pathtophp to env. The template config needs it. cp .github/workflows/config-template.php config.php mkdir ../moodledata sudo locale-gen en_AU.UTF-8 php admin/tool/phpunit/cli/init.php --no-composer-self-update - name: Running PHPUnit tests env: dbtype: ${{ matrix.db }} phpunit_options: ${{ secrets.phpunit_options }} run: vendor/bin/phpunit $phpunit_options ${{ inputs.phpunit_extra_options }}