diff --git a/.editorconfig b/.editorconfig index 6712fd66cc..1c19210c40 100644 --- a/.editorconfig +++ b/.editorconfig @@ -21,3 +21,7 @@ ij_java_names_count_to_use_import_on_demand = 999 [*.xml.mustache] indent_style = space + +[*.{yml,yaml}] +indent_style = space +indent_size = 2 diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index a8c13ecf64..ea12b03764 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -3,7 +3,7 @@ on: branches: - main pull_request: - types: [assigned, opened, synchronize, reopened] + types: [assigned, opened, synchronize, reopened] jobs: buildTest: @@ -47,21 +47,21 @@ jobs: - name: Check spotless run: ./gradlew spotlessCheck -S buildTestOnWindows: - name: Build on Windows CI - runs-on: windows-latest - strategy: - fail-fast: false - matrix: - java_version: [11, 17] - distribution: ["temurin"] - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Install JDK ${{ matrix.distribution }} ${{ matrix.java_version }} - uses: actions/setup-java@v3.9.0 - with: - distribution: ${{ matrix.distribution }} - java-version: ${{ matrix.java_version }} - cache: gradle - - name: Build project - run: ./gradlew build -x spotlessCheck -S + name: Build on Windows CI + runs-on: windows-latest + strategy: + fail-fast: false + matrix: + java_version: [11, 17] + distribution: ["temurin"] + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Install JDK ${{ matrix.distribution }} ${{ matrix.java_version }} + uses: actions/setup-java@v3.9.0 + with: + distribution: ${{ matrix.distribution }} + java-version: ${{ matrix.java_version }} + cache: gradle + - name: Build project + run: ./gradlew build -x spotlessCheck -S