Skip to content

Commit 5107628

Browse files
committed
Fixing errors
1 parent 1453c6f commit 5107628

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/php.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,19 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
php-version: [7.0, 7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
15-
14+
php-version: [8.3, 8.4]
15+
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@v3
1919

2020
- name: Set up PHP
21-
uses: shivammathur/setup-php@v4
21+
uses: shivammathur/setup-php@v3
2222
with:
2323
php-version: ${{ matrix.php-version }}
24-
extensions: gmp # Add any other extensions you need
25-
coverage: none
2624

2725
- name: Install Composer dependencies
2826
run: composer install --no-progress --prefer-dist
2927

3028
- name: Run PHPUnit
31-
run: bin/phpunit
29+
run: bin/phpunit

0 commit comments

Comments
 (0)