Skip to content

Commit 69c56f7

Browse files
committed
checkmark
1 parent 48dd455 commit 69c56f7

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build
2+
on: [ push, pull_request, workflow_dispatch ]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: checkout repository
9+
uses: actions/checkout@v4
10+
- name: validate gradle wrapper
11+
uses: gradle/wrapper-validation-action@v1
12+
- name: setup java
13+
uses: actions/setup-java@v4
14+
with:
15+
distribution: "temurin"
16+
java-version: 17
17+
- name: build
18+
run: |
19+
chmod +x ./gradlew
20+
./gradlew build
21+
- name: upload artifacts
22+
uses: actions/upload-artifact@v3
23+
with:
24+
path: build/libs/
25+

0 commit comments

Comments
 (0)