Skip to content

Commit 727903b

Browse files
committed
CI
1 parent ef3ef47 commit 727903b

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: SmallRye Module Info Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
types: [opened, synchronize, reopened, ready_for_review]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
name: build with JDK 11
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
name: checkout
18+
19+
- uses: AdoptOpenJDK/install-jdk@v1
20+
name: set up JDK 11
21+
with:
22+
version: 11
23+
24+
- name: Build
25+
run: mvn -B install --file pom.xml

0 commit comments

Comments
 (0)