Skip to content

Commit bb224b1

Browse files
committed
Introduce basic CI workflow
1 parent 3f455b8 commit bb224b1

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/build-addon.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build Addon
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
build-addon:
10+
name: Build Addon
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Code
14+
uses: actions/checkout@v3
15+
16+
- name: Set Up JDK 17
17+
uses: actions/setup-java@v3
18+
with:
19+
java-version: 17
20+
distribution: adopt
21+
22+
- name: Setup Gradle
23+
uses: gradle/gradle-build-action@v2
24+
with:
25+
cache-disabled: true
26+
27+
- name: Build with Gradle
28+
uses: gradle/gradle-build-action@v2
29+
with:
30+
arguments: build

0 commit comments

Comments
 (0)