diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml new file mode 100644 index 0000000..08579fd --- /dev/null +++ b/.github/workflows/laravel.yml @@ -0,0 +1,21 @@ +name: Laravel + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + laravel-tests: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Copy .env + run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Install Dependencies + run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist + - name: Execute tests (Unit and Feature tests) via PHPUnit + run: vendor/bin/phpunit diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bb8a51..4ed1822 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to `laravel-lob-webhooks` will be documented in this file +## 1.2.0 - 2020-11-07 + +- Update dependencies to support Laravel 8 +- Add Github tests +- Joe Biden will be 46th president of USA + ## 1.0.0 - 2020-01-27 - initial release diff --git a/composer.json b/composer.json index b0ba139..97832a4 100644 --- a/composer.json +++ b/composer.json @@ -20,11 +20,11 @@ ], "require": { "php": "^7.2", - "illuminate/support": "~5.8.0|^6.0|^7.0", + "illuminate/support": "~5.8.0|^6.0|^7.0|^8.0", "spatie/laravel-webhook-client": "^2.0" }, "require-dev": { - "orchestra/testbench": "~3.8.0|^4.0|^5.0", + "orchestra/testbench": "~3.8.0|^4.0|^5.0|^6.0", "phpunit/phpunit": "^8.2|^9.0" }, "autoload": {