From 537e0cde06f03bc85b22bb6fc051fb69cb20e6b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 27 Feb 2024 16:47:58 +0100 Subject: [PATCH] Fix: Consistently quote strings in YAML files --- .github/workflows/integrate.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 08baf5a..a418546 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -1,4 +1,4 @@ -name: Integrate +name: "Integrate" on: pull_request: null @@ -19,19 +19,19 @@ jobs: - '8.2' steps: - - name: Checkout - uses: actions/checkout@v2 + - name: "Checkout" + uses: "actions/checkout@v2" - - name: Setup PHP - uses: shivammathur/setup-php@v2 + - name: "Setup PHP" + uses: "shivammathur/setup-php@v2" with: - php-version: ${{ matrix.php-version }}' + php-version: "${{ matrix.php-version }}'" - - name: Validate composer.json and composer.lock - run: composer validate + - name: "Validate composer.json and composer.lock" + run: "composer validate" - - name: Install dependencies - run: composer install --prefer-dist --no-progress --no-suggest + - name: "Install dependencies" + run: "composer install --prefer-dist --no-progress --no-suggest" - - name: Run PHPUnit - run: vendor/bin/phpunit -c tests/build.xml + - name: "Run PHPUnit" + run: "vendor/bin/phpunit -c tests/build.xml"