Skip to content

Dump the character set as specified for the connection #158

Dump the character set as specified for the connection

Dump the character set as specified for the connection #158

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
jobs:
PHPUnit:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
php: [7.2, 7.4, 8.1]
steps:
- name: Configure PHP version
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
- uses: actions/checkout@v3
- name: Cache Composer Dependencies
uses: actions/cache@v3
with:
path: vendor/
key: composer-${{ matrix.php }}-${{ hashFiles('composer.*') }}
restore-keys: |
composer-${{ matrix.php }}-${{ github.ref }}
composer-${{ matrix.php }}-
- run: |
composer update --no-interaction --no-scripts --no-progress
composer show
- run: vendor/bin/phpunit