Skip to content

Commit

Permalink
Merge pull request #28 from tenshiAMD/master
Browse files Browse the repository at this point in the history
Fixes #27
  • Loading branch information
Olofguard authored Nov 15, 2022
2 parents 46652b3 + abfdda4 commit 9073e31
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: test

on: [push]
on:
push:
pull_request:
types:
- opened
- synchronize

jobs:
build:
Expand All @@ -11,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 7.3, 7.4 ]
php: [ "7.3", "7.4", "8.0", "8.1" ]
os: [ ubuntu-latest ]

steps:
Expand All @@ -23,6 +28,12 @@ jobs:
with:
php-version: ${{ matrix.php }}

- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}

- name: Install Dependencies
uses: php-actions/composer@master
with:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"require": {
"php": ">=7.2.5",
"guzzlehttp/guzzle": "^6.2|^7.0.1",
"guzzlehttp/guzzle": "^6.2|^7.0.1|^7.2",
"aws/aws-sdk-php": "~3.0",
"illuminate/contracts": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0",
Expand Down

0 comments on commit 9073e31

Please sign in to comment.