Skip to content

Commit ebdc1c9

Browse files
committed
Setup GitHub Actions
1 parent ee4791f commit ebdc1c9

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 API
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- name: Install Java 8
11+
uses: actions/setup-java@v3
12+
with:
13+
java-version: '8'
14+
distribution: 'adopt'
15+
architecture: x64
16+
- name: build
17+
run: ./compile

0 commit comments

Comments
 (0)