Skip to content

Commit

Permalink
Add GitHub build
Browse files Browse the repository at this point in the history
  • Loading branch information
lptr committed Aug 19, 2024
1 parent b318129 commit 7b19007
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ insert_final_newline = true

[gradle/verification-metadata.xml]
indent_size = 3

[*.{json,yml,yaml}]
indent_size = 2
27 changes: 27 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build Gradle project

on:
push:

jobs:
build:
runs-on: macos-13

steps:
- name: Checkout project sources
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Build
run: |
./gradlew build

0 comments on commit 7b19007

Please sign in to comment.