1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Switch shell instead of tweaking quotes

This commit is contained in:
Bruce Weirdan 2023-02-09 14:42:22 -04:00
parent 89024ffbc2
commit ffb393ca97
No known key found for this signature in database
GPG Key ID: CFC3AAB181751B0D

View File

@ -25,6 +25,7 @@ jobs:
run: |
echo "count=$(php -r 'echo json_encode([ ${{ env.CHUNK_COUNT }} ]);')" >> $GITHUB_OUTPUT
echo "chunks=$(php -r 'echo json_encode(range(1, ${{ env.CHUNK_COUNT }} ));')" >> $GITHUB_OUTPUT
shell: bash
tests:
name: "Unit Tests - ${{ matrix.chunk }}"
@ -64,8 +65,9 @@ jobs:
- name: Get Composer Cache Directories
id: composer-cache
run: |
echo "files_cache=""$(composer config cache-files-dir)""" >> $GITHUB_OUTPUT
echo "vcs_cache=""$(composer config cache-vcs-dir)""" >> $GITHUB_OUTPUT
echo "files_cache=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
echo "vcs_cache=$(composer config cache-vcs-dir)" >> $GITHUB_OUTPUT
shell: bash
- name: Cache composer cache
uses: actions/cache@v3