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:
parent
89024ffbc2
commit
ffb393ca97
6
.github/workflows/windows-ci.yml
vendored
6
.github/workflows/windows-ci.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user