Skip to content
This repository was archived by the owner on Jan 9, 2024. It is now read-only.

Commit 115be81

Browse files
thekonzmsonowal
authored andcommitted
fix phpunit version, add php versions to tests
1 parent ea41907 commit 115be81

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ end_of_line = lf
66
indent_size = 4
77
indent_style = space
88
insert_final_newline = true
9+
10+
[*.yml]
11+
indent_size = 2

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,18 @@ jobs:
66
build-test:
77
runs-on: ubuntu-latest
88

9+
strategy:
10+
matrix:
11+
php-versions:
12+
- 7.2
13+
- 7.3
14+
- 7.4
15+
916
steps:
1017
- uses: actions/checkout@v2
18+
- uses: shivammathur/setup-php@v2
19+
with:
20+
php-version: ${{ matrix.php-versions }}
1121
- uses: php-actions/composer@v1
1222
- name: PHPUnit Tests
13-
uses: php-actions/phpunit@v9
23+
uses: php-actions/phpunit@v8

0 commit comments

Comments
 (0)