Skip to content

Commit 804cc71

Browse files
committed
build: fix dependencies and add scheduled tests
1 parent f8bbed9 commit 804cc71

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Diff for: .github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: "Test"
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: '0 03 * * 1' # At 03:00 on Monday.
48

59
jobs:
610
tests:

Diff for: composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
}
2020
],
2121
"require": {
22-
"php": ">=7.4",
22+
"php": "^7.4|^8.0",
2323
"psr/log": "^1.0",
24-
"symfony/process": ">=4.0"
24+
"symfony/process": ">=4.4"
2525
},
2626
"require-dev": {
2727
"phpunit/phpunit": "^9.5",

0 commit comments

Comments
 (0)