-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make composer install work over a larger range
not locking is fine since we only have dev-dependencies Signed-off-by: Robin Appelman <[email protected]>
- Loading branch information
1 parent
9377d50
commit 15608f1
Showing
4 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml | ||
index 3ca2bd2..2dd16f5 100644 | ||
--- a/.github/workflows/phpunit-mysql.yml | ||
+++ b/.github/workflows/phpunit-mysql.yml | ||
@@ -117,7 +117,10 @@ jobs: | ||
# Only run if phpunit config file exists | ||
if: steps.check_composer.outputs.files_exists == 'true' | ||
working-directory: apps/${{ env.APP_NAME }} | ||
- run: composer i | ||
+ run: | | ||
+ rm composer.lock | ||
+ composer delete nextcloud/ocp | ||
+ composer i | ||
|
||
- name: Set up Nextcloud | ||
env: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters