Skip to content

Commit

Permalink
-travis +github
Browse files Browse the repository at this point in the history
  • Loading branch information
deemru committed Dec 1, 2021
1 parent fb273c1 commit 82c9be5
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 13 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: PHP

on: [push]

jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php-versions: ['5.6', '7.4', '8.0']

runs-on: ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}

- name: Validate composer.json and composer.lock
run: composer validate

- name: Composer install
run: composer install

- name: Composer test
run: composer run-script test --timeout=3600
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit 82c9be5

Please sign in to comment.