Skip to content

Commit 7e37475

Browse files
Add GH Actions
1 parent 1b8c360 commit 7e37475

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/gradle.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ "**" ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Set up Java
14+
uses: actions/setup-java@v4
15+
with:
16+
java-version: 21
17+
distribution: 'temurin'
18+
cache: 'gradle'
19+
20+
- name: Make Gradle wrapper executable
21+
run: chmod +x gradlew
22+
23+
- name: Build with Gradle
24+
run: ./gradlew build

0 commit comments

Comments
 (0)