From fa7f146609607363d12041dd455b02bcc3d21104 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 30 May 2020 13:14:39 +0100 Subject: [PATCH] Fix yamllint errors --- .github/workflows/ci.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d326d9..0355430 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,7 @@ +--- name: CI -on: +on: # yamllint disable-line rule:truthy pull_request: push: @@ -13,7 +14,10 @@ jobs: php: [7.3, 7.4] dependency-version: [prefer-lowest, prefer-stable] - name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} + name: > + P${{ matrix.php }}- + ${{ matrix.dependency-version }}- + ${{ matrix.os }} steps: - name: Checkout code @@ -23,7 +27,10 @@ jobs: uses: actions/cache@v1 with: path: ~/.composer/cache/files - key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} + key: > + dependencies- + php-${{ matrix.php }}- + composer-${{ hashFiles('composer.json') }} - name: Setup PHP uses: shivammathur/setup-php@v1 @@ -34,7 +41,8 @@ jobs: - name: Install dependencies run: | composer install - composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest + composer update --${{ matrix.dependency-version }} \ + --prefer-dist --no-interaction --no-suggest - name: Execute tests run: make test