Skip to content

Commit 1c49d44

Browse files
committed
Add github actions
1 parent ed7b850 commit 1c49d44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/actions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
runs-on: ubuntu-20.04
99
strategy:
1010
matrix:
11-
php-version: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
11+
php-version: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
1212

1313
steps:
1414
- uses: actions/checkout@v2
1515

16-
- name: Setup PHP
16+
- name: Setup PHP ${{ matrix.php-version }}
1717
uses: shivammathur/setup-php@v2
1818
with:
1919
php-version: ${{ matrix.php-version }}
2020

21-
run: composer install --prefer-dist --no-progress --no-suggest
22-
run: ./test/run
21+
- run: composer install --prefer-dist --no-progress --no-suggest
22+
- run: ./test/run

0 commit comments

Comments
 (0)