Skip to content

Commit

Permalink
Move to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
EmanueleMinotto committed Jan 2, 2021
1 parent 8a30484 commit 24765c7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 31 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
pull_request: null
push:
branches:
- master

jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']

name: PHP ${{ matrix.php }} tests
steps:
- uses: actions/checkout@v2

- uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php }}
coverage: none
tools: phpunit

- run: composer require psr/log psr/container
- run: phpunit -v --colors=always tests
31 changes: 0 additions & 31 deletions .travis.yml

This file was deleted.

0 comments on commit 24765c7

Please sign in to comment.