File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 7
7
- \d+.\d+
8
8
pull_request : ~
9
9
workflow_dispatch : ~
10
+ # Check api-platform/core:dev-main every sunday at 02:00
11
+ schedule :
12
+ - cron : 0 2 * * 0
10
13
11
14
concurrency :
12
15
group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
42
45
-
43
46
name : Start services
44
47
run : docker compose up --wait --no-build
48
+ -
49
+ name : Update API Platform to latest
50
+ if : ${{ github.event_name == 'schedule' }}
51
+ run : docker compose exec php composer require api-platform/core:dev-main
45
52
-
46
53
name : Check HTTP reachability
47
54
run : curl -v -o /dev/null http://localhost
@@ -121,6 +128,10 @@ jobs:
121
128
-
122
129
name : Start Services
123
130
run : docker compose up --wait --no-build
131
+ -
132
+ name : Update API Platform to latest
133
+ if : ${{ github.event_name == 'schedule' }}
134
+ run : docker compose exec php composer require api-platform/core:dev-main
124
135
-
125
136
name : Load Fixtures
126
137
run : docker compose run --rm php bin/console doctrine:fixtures:load --no-interaction
You can’t perform that action at this time.
0 commit comments