Skip to content

fix deprecation warning on PHP 8.5 #1

fix deprecation warning on PHP 8.5

fix deprecation warning on PHP 8.5 #1

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
name: PHP ${{ matrix.php-version }}
steps:
- uses: actions/checkout@v4
- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php-version }}
php_extensions: curl
- name: Run tests
uses: php-actions/phpunit@v4
with:
php_version: ${{ matrix.php-version }}
php_extensions: curl
version: 9