Skip to content

Commit b003e05

Browse files
committed
Add github build action
1 parent 594677a commit b003e05

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build
2+
on:
3+
push:
4+
branches: [ "main" ]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-java@v4
11+
with:
12+
distribution: temurin
13+
java-version: 17
14+
- name: Setup Gradle
15+
uses: gradle/gradle-build-action@v3
16+
- name: Build
17+
run: ./gradlew build

0 commit comments

Comments
 (0)