Skip to content

Commit f8c7f72

Browse files
committed
Removed the composer.lock file temporarily
1 parent 15b735c commit f8c7f72

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,12 @@ jobs:
7979
working-directory: rollbar-test-app
8080
# This adds time, so only run this if the previous step fails.
8181
if: ${{ steps.composer_require.outcome == 'failure' }}
82-
run: composer update
82+
# We are ok removing the lock file since it was generated in step 3,
83+
# before we included all our requirements.
84+
run: |
85+
rm composer.lock
86+
composer require rollbar/rollbar-laravel
87+
composer install
8388
8489
- name: Setup .env
8590
working-directory: rollbar-test-app

0 commit comments

Comments
 (0)