We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef3ef47 commit 727903bCopy full SHA for 727903b
.github/workflows/build.yml
@@ -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