Skip to content

Commit 0d95484

Browse files
committed
Fix workflow
1 parent fb3df19 commit 0d95484

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66
pull_request:
7-
branches: [ master ]
7+
branches: [master]
88
workflow_dispatch:
99

1010
jobs:
1111
tests:
1212
strategy:
1313
matrix:
14-
operating-system: ubuntu-latest
14+
operating-system: [ubuntu-latest]
1515
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
1616
runs-on: ${{ matrix.operating-system }}
1717
steps:
@@ -36,4 +36,4 @@ jobs:
3636
- name: Setup problem matchers for PHPUnit
3737
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3838
- name: Test with phpunit
39-
run: vendor/bin/phpunit
39+
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)