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 d65953a commit f19b061Copy full SHA for f19b061
.github/workflows/php-test.yml renamed to .github/workflows/test.yml
@@ -1,25 +1,24 @@
1
-name: PHP Composer
+name: Run Tests
2
3
-on:
4
- push:
5
- branches: [ "master" ]
6
- pull_request:
7
+on: ['push', 'pull_request']
8
9
permissions:
10
contents: read
11
12
jobs:
13
- build:
+ test:
14
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ php-version: [ 8.1, 8.2, 8.3, 8.4 ]
15
16
steps:
17
- uses: actions/checkout@v4
18
19
- - name: Setup PHP
+ - name: PHP ${{ matrix.php-version }}
20
uses: shivammathur/setup-php@v2
21
with:
22
- php-version: '8.1'
+ php-version: ${{ matrix.php-version }}
23
extensions: mbstring, intl, pdo_mysql
24
coverage: none
25
0 commit comments