Skip to content

Commit

Permalink
Add spotless and editor-config
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-powell committed Dec 18, 2023
1 parent 85eb5aa commit 3be0e2e
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Android CI
name: Android

on:
push:
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: All Platforms Tests

on:
push:
branches:
- main
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
cache: gradle

- name: Setup gradle
uses: gradle/gradle-build-action@v2
with:
gradle-home-cache-cleanup: true

- name: Build with Gradle
run: ./gradlew spotlessCheck
2 changes: 1 addition & 1 deletion .github/workflows/desktop-web.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Desktop and Web CI
name: Desktop and Web

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: iOS CI
name: iOS

on:
push:
Expand Down

0 comments on commit 3be0e2e

Please sign in to comment.