Dump the character set as specified for the connection (#101) #18
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: Verify composer.lock compatibility with different PHP versions | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
compat-check: | |
name: Check dependency compatibility | |
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 | |
- run: composer install --dry-run |