Skip to content

Commit 6abc4c8

Browse files
committed
MQE-1800: Allow generate:tests to continue running even if one test fails generation
1 parent 9540a81 commit 6abc4c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/cache@v2
2828
with:
2929
path: vendor
30-
key: {{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
30+
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
3131
restore-keys: |
3232
${{ runner.os }}-php-
3333
@@ -73,7 +73,7 @@ jobs:
7373
${{ runner.os }}-php-
7474
7575
- name: Install dependencies
76-
#if: steps.composer-cache.outputs.cache-hit != 'true'
76+
if: steps.composer-cache.outputs.cache-hit != 'true'
7777
run: composer install --prefer-dist --no-progress --no-suggest
7878

7979
- name: Run tests

0 commit comments

Comments
 (0)