We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c05fd commit ac17834Copy full SHA for ac17834
.github/workflows/tests.yml
@@ -7,22 +7,22 @@ on:
7
8
jobs:
9
tests:
10
- name: Test PHP ${{ matrix.php-version }} ${{ matrix.name }}
11
- runs-on: ubuntu-latest
+ name: Test PHP ${{ matrix.php }} ${{ matrix.name }}
+ runs-on: ubuntu-24.04
12
strategy:
13
fail-fast: false
14
matrix:
15
- php-version: ['8.1', '8.2', '8.3']
+ php: ['8.1', '8.2', '8.3', '8.4']
16
composer-flags: ['']
17
name: ['']
18
include:
19
- - php: 8.0
+ - php: '8.0'
20
composer-flags: '--prefer-lowest'
21
name: '(prefer lowest dependencies)'
22
23
steps:
24
- name: Checkout Code
25
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
26
27
- name: Setup PHP
28
uses: shivammathur/setup-php@v2
0 commit comments