Skip to content

remove PHP 8.0, 8.1 (end of life) and add 8.5 from tests #2

remove PHP 8.0, 8.1 (end of life) and add 8.5 from tests

remove PHP 8.0, 8.1 (end of life) and add 8.5 from tests #2

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.2', '8.3', '8.4', '8.5']
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