We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 822ee8f commit f78806eCopy full SHA for f78806e
1 file changed
.github/workflows/tests.yml
@@ -29,6 +29,9 @@ jobs:
29
- name: Checkout repository
30
uses: actions/checkout@v4
31
32
+ - name: Mark repo safe for git
33
+ run: git config --global --add safe.directory /github/workspace
34
+
35
- name: Setup PHP
36
uses: shivammathur/setup-php@v2
37
with:
@@ -42,6 +45,9 @@ jobs:
42
45
path: /tmp/composer-cache
43
46
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
44
47
48
+ - name: Delete composer.lock (library mode)
49
+ run: rm -f composer.lock
50
51
- name: Install Composer dependencies
52
uses: php-actions/composer@v6
53
0 commit comments