Skip to content

Commit

Permalink
Merge pull request #16 from http-interop/chore/github-actions
Browse files Browse the repository at this point in the history
Switch to Github Actions
  • Loading branch information
shadowhand authored Jul 21, 2021
2 parents 7a3e256 + acc5916 commit 8f06e92
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 32 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: CI

on:
pull_request:
push:
branches: [ master ]

jobs:
run:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
php:
- '7.3'
- '7.4'
- '8.0'
minimum_versions: [false]
coverage: ['none']
include:
- description: 'Minimum version'
php: '7.3'
minimum_versions: true
- description: 'Log Code Coverage'
php: '8.0'
coverage: 'xdebug'

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

- uses: actions/cache@v2
with:
path: ~/.composer/cache/files
key: ${{ matrix.php }}

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

- name: Install dependencies
run: composer install
if: matrix.minimum_versions == false

- name: Install dependencies (lowest versions)
run: composer update --no-interaction --prefer-lowest
if: matrix.minimum_versions == true

- name: Run PHPUnit tests
run: vendor/bin/phpunit

- name: Upload code coverage
uses: codecov/codecov-action@v2
if: matrix.coverage == 'xdebug'
with:
file: './build/logs/clover.xml'
fail_ci_if_error: true
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

0 comments on commit 8f06e92

Please sign in to comment.