File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: Continuous Integration
22
33on : [pull_request]
44
5+ env :
6+ COMPOSER_CACHE_DIR : /tmp/composer-cache
7+
58jobs :
69
710 test-install-with-composer-and-sqlite :
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 : |
You can’t perform that action at this time.
0 commit comments