Skip to content

Commit 7f5d43a

Browse files
authored
Merge pull request #20 from eschricker/feature/github-actions-on-pull-requests
changed github actions to run on PRs
2 parents 1209ea9 + 8a0a78e commit 7f5d43a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/phpunit.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: PHPUnit tests
33
on:
44
push:
55
pull_request:
6+
branches:
7+
- develop
68
release:
79
types:
810
- published
@@ -14,7 +16,7 @@ jobs:
1416
strategy:
1517
fail-fast: false
1618
matrix:
17-
php: [7.2, 7.3, 7.4, 8.0]
19+
php: [7.4, 8.0]
1820
laravel: [6.*, 7.*, 8.*]
1921
os: [ubuntu-latest]
2022
coverage: [none]

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"php": "^7.2|^8.0",
3232
"illuminate/auth": "^5.2|^6|^7|^8",
3333
"illuminate/contracts": "^5.2|^6|^7|^8",
34-
"illuminate/database": "^8.61",
34+
"illuminate/database": "^5.2|^6|^7|^8",
3535
"illuminate/http": "^5.2|^6|^7|^8",
3636
"illuminate/support": "^5.2|^6|^7|^8",
3737
"lcobucci/jwt": "^4.0",

0 commit comments

Comments
 (0)