remove utf8_encode as it is deprecated from php 8.2, replace with mbs… #121
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
steps: | |
- uses: actions/checkout@master | |
- name: setup php | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: json, xdebug, soap | |
coverage: xdebug | |
- name: install deps | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: run tests | |
run: cp -f .env.pipelines .env && composer test |