Skip to content

Commit

Permalink
Fix: Consistently quote strings in YAML files
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Feb 27, 2024
1 parent 988e213 commit 537e0cd
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Integrate
name: "Integrate"

on:
pull_request: null
Expand All @@ -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"

0 comments on commit 537e0cd

Please sign in to comment.