From 1b58cc8b6a82f21e13835fa02b8ba7dfaf8e2074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 11 Dec 2023 16:13:10 +0100 Subject: [PATCH] Fix: Consistently indent with 2 spaces --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index a41b3b93..05c1abcd 100644 --- a/README.md +++ b/README.md @@ -58,19 +58,19 @@ as part of your CI pipeline. For example in a GitHub action, note the use of jobs: roave-backwards-compatibility-check: name: Roave Backwards Compatibility Check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: "Install PHP" - uses: shivammathur/setup-php@v2 - with: - php-version: "8.0" - - name: "Install dependencies" - run: "composer install" - - name: "Check for BC breaks" - run: "vendor/bin/roave-backward-compatibility-check" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: "Install PHP" + uses: shivammathur/setup-php@v2 + with: + php-version: "8.0" + - name: "Install dependencies" + run: "composer install" + - name: "Check for BC breaks" + run: "vendor/bin/roave-backward-compatibility-check" ``` #### Nyholm Github Action