Skip to content

Commit 9593d5e

Browse files
committed
Add Github CI config
1 parent 02e66ca commit 9593d5e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on: push
2+
name: Test
3+
jobs:
4+
test:
5+
name: Test
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ]
10+
11+
steps:
12+
- uses: actions/checkout@master
13+
14+
- name: Setup PHP
15+
uses: shivammathur/setup-php@v2
16+
with:
17+
php-version: ${{ matrix.php }}
18+
coverage: none
19+
20+
- name: Install Dependencies
21+
run: composer install
22+
23+
- name: Test
24+
run: make tests

0 commit comments

Comments
 (0)