Skip to content

Commit

Permalink
Merge pull request #15 from mateusjunges/gh-actions
Browse files Browse the repository at this point in the history
Switch to Github Actions
  • Loading branch information
mateusjunges authored Mar 11, 2020
2 parents abbccb6 + 5ae36bf commit 98f968d
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 29 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Continuous Integration

on: ['push', 'pull_request']

jobs:
ci:
runs-on: ubuntu-latest

strategy:
matrix:
php: [7.4]
laravel: [7.*, 6.*, 5.8.*, 5.7.*, 5.6.*]
dependency-version: [prefer-stable]
include:
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*
- laravel: 5.8.*
testbench: 3.8.*
- laravel: 5.7.*
testbench: 3.7.*
- laravel: 5.6.*
testbench: 3.6.*

name: CI - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Testbench ${{ matrix.testbench }} (${{ matrix.dependency-version }})

steps:

- name: Checkout
uses: actions/checkout@v2

- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, zip
tools: prestissimo
coverage: pcov

- name: Install Composer dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist --no-suggest
- name: PHPUnit Testing
run: vendor/bin/phpunit
28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to `mateusjunges/laravel-invite-codes` will be documented in this file.

## 1.2.2 2020-11-03
- Change test suite to run on github actions instead of TravisCi

## 1.2.1 2020-03-08
- Ensure all generated codes are unique (#12)

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ This package allows you to easily manage invite codes for your Laravel applicati
<a href="https://packagist.org/packages/mateusjunges/laravel-invite-codes" target="_blank"><img src="https://poser.pugx.org/mateusjunges/laravel-invite-codes/v/stable.svg" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/mateusjunges/laravel-invite-codes" target="_blank"><img src="https://poser.pugx.org/mateusjunges/laravel-invite-codes/license.svg" alt="License"></a>
<a href="https://github.styleci.io/repos/236969945" target="_blank"><img src="https://github.styleci.io/repos/236969945/shield?style=flat"></a>
<a href="https://travis-ci.org/mateusjunges/laravel-invite-codes"><img src="https://img.shields.io/travis/mateusjunges/laravel-invite-codes/master.svg?style=flat" alt="Build Status"></a>
<a href="https://github.com/mateusjunges/laravel-invite-codes/actions?query=workflow%3A%22Continuous+Integration%22">
<img src="https://github.com/mateusjunges/laravel-invite-codes/workflows/Continuous%20Integration/badge.svg" alt="Continuos integration"></a>
</p>

# Documentation
Expand Down

0 comments on commit 98f968d

Please sign in to comment.