From 90b87d385df058140557e6ead7d334d5f153ef00 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Tue, 24 Sep 2024 22:13:06 +0300 Subject: [PATCH] Fix indent --- .editorconfig | 4 ++++ .github/workflows/ci.yml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 30e6d46..a54b59f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,3 +6,7 @@ root = true charset = utf-8 indent_style = tab insert_final_newline = true + +[*.yaml] +indent_style = space +indent_size = 2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2461c74..1c62e58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,14 +11,14 @@ jobs: strategy: matrix: php: ['8.1', '8.2', '8.3'] - steps: + steps: - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - - name: Checkout + - name: Checkout uses: actions/checkout@v4 - name: Install dependencies