Skip to content

Commit

Permalink
Fix editor config for yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
eirnym committed Jan 9, 2023
1 parent 71661c1 commit 5fc8689
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 19 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
38 changes: 19 additions & 19 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
branches:
- main
pull_request:
types: [assigned, opened, synchronize, reopened]
types: [assigned, opened, synchronize, reopened]

jobs:
buildTest:
Expand Down Expand Up @@ -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/[email protected]
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/[email protected]
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java_version }}
cache: gradle
- name: Build project
run: ./gradlew build -x spotlessCheck -S

0 comments on commit 5fc8689

Please sign in to comment.