We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c33ae57 commit 9f5d28dCopy full SHA for 9f5d28d
.github/workflows/tests.yml
@@ -33,9 +33,6 @@ jobs:
33
- name: Run tests
34
run: make test
35
36
- - name: work around permission issue on Coveralls
37
- run: git config --global --add safe.directory /app
38
-
39
- name: Coveralls
40
env:
41
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Dockerfile
@@ -15,7 +15,8 @@ COPY --from=composer /usr/bin/composer /usr/bin/composer
15
COPY composer.json /dependencies
16
COPY composer.lock /dependencies
17
18
-RUN composer install
+RUN composer install \
19
+ && git config --global --add safe.directory /app
20
21
FROM php:7.4-cli-alpine3.13
22
0 commit comments