File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -69,10 +69,20 @@ jobs:
69
69
70
70
- name : Install that code using Composer rigged to look in the parent directory
71
71
working-directory : rollbar-test-app
72
+ continue-on-error : true
72
73
run : |
73
74
composer config repositories.local '{"type":"path", "url":".."}'
74
75
composer require rollbar/rollbar-laravel
75
- composer update psr/log
76
+
77
+ - name : Try to resolve requirements into an installable set of packages
78
+ working-directory : rollbar-test-app
79
+ # This adds time, so only run this if the previous step fails.
80
+ if : ${{ failure() }}
81
+ run : composer update
82
+
83
+ - name : Setup .env
84
+ working-directory : rollbar-test-app
85
+ run : |
76
86
echo "ROLLBAR_TOKEN=${ROLLBAR_TOKEN}" >> .env
77
87
echo "GITHUB_RUN_ID=${GITHUB_RUN_ID}" >> .env
78
88
chmod 400 .env
You can’t perform that action at this time.
0 commit comments