From e935ca93a87bcd9857f366a8b4ad5fe238141e64 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sun, 25 May 2025 08:40:45 +0200 Subject: [PATCH] Remove superfluous double-quotes --- .github/workflows/ci.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4eb5a7d..8529673 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,13 +1,13 @@ # https://help.github.com/en/categories/automating-your-workflow-with-github-actions on: - - "pull_request" - - "push" + - pull_request + - push -name: "CI" +name: CI env: - COMPOSER_ROOT_VERSION: "7.0.x-dev" + COMPOSER_ROOT_VERSION: 7.0.x-dev permissions: contents: read @@ -61,25 +61,25 @@ jobs: fail-fast: false matrix: php-version: - - "8.3" - - "8.4" - - "8.5" + - 8.3 + - 8.4 + - 8.5 steps: - - name: "Checkout" - uses: "actions/checkout@v4" + - name: Checkout + uses: actions/checkout@v4 - - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@v2" + - name: Install PHP with extensions + uses: shivammathur/setup-php@v2 with: - php-version: "${{ matrix.php-version }}" - coverage: "xdebug" + php-version: ${{ matrix.php-version }} + coverage: xdebug - - name: "Install dependencies with Composer" - run: "./tools/composer update --no-ansi --no-interaction --no-progress" + - name: Install dependencies with Composer + run: ./tools/composer update --no-ansi --no-interaction --no-progress - - name: "Run tests with PHPUnit" - run: "vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml" + - name: Run tests with PHPUnit + run: vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml - name: Upload test results to Codecov.io if: ${{ !cancelled() }}