Skip to content

Commit 144a73e

Browse files
committed
Add CI action
1 parent 4c2cb65 commit 144a73e

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/build.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- "*"
6+
tags:
7+
- "*"
8+
pull_request:
9+
branches:
10+
- "*"
11+
workflow_dispatch:
12+
13+
jobs:
14+
build:
15+
name: "Build"
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v5
20+
- name: Set up Java
21+
uses: actions/setup-java@v5
22+
with:
23+
distribution: 'temurin'
24+
java-version: 21
25+
cache: 'gradle'
26+
- name: Build with Gradle
27+
run: ./gradlew build --stacktrace
28+
- name: Upload Artifacts
29+
uses: actions/upload-artifact@v4
30+
with:
31+
name: artifacts
32+
path: build/libs/*

0 commit comments

Comments
 (0)