Skip to content

Commit d9c72e1

Browse files
committed
Move to github actions
1 parent 84a18a4 commit d9c72e1

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
php:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
php: [7.2, 7.3]
11+
steps:
12+
- uses: actions/checkout@v1
13+
- name: Install dependencies
14+
run: composer install --no-interaction --no-progress
15+
- name: Run tests
16+
run: php${{ matrix.php }} vendor/bin/phpunit --configuration Tests/phpunit.xml --verbose --fail-on-warning

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
],
2626
"require":
2727
{
28-
"php": ">=5.5"
28+
"php": ">=7.2"
2929
},
3030
"require-dev":
3131
{

0 commit comments

Comments
 (0)