Skip to content

Commit 0e6dad1

Browse files
Update code analysis
1 parent 96eb984 commit 0e6dad1

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Continuous Integration
22

33
on: [pull_request]
44

5+
env:
6+
COMPOSER_CACHE_DIR: /tmp/composer-cache
7+
58
jobs:
69

710
test-install-with-composer-and-sqlite:
@@ -36,7 +39,7 @@ jobs:
3639
- name: Cache Composer dependencies
3740
uses: actions/cache@v4
3841
with:
39-
path: /tmp/composer-cache
42+
path: ${{ env.COMPOSER_CACHE_DIR }}
4043
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}
4144
- name: Install Symfony Flex
4245
run: |
@@ -114,7 +117,7 @@ jobs:
114117
- name: Cache Composer dependencies
115118
uses: actions/cache@v4
116119
with:
117-
path: /tmp/composer-cache
120+
path: ${{ env.COMPOSER_CACHE_DIR }}
118121
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}
119122
- name: Install Symfony Flex
120123
run: |

0 commit comments

Comments
 (0)