We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 903ce86 commit 17321e0Copy full SHA for 17321e0
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: Java CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ strategy:
16
+ matrix:
17
+ java-version: [17]
18
19
+ steps:
20
+ - name: Check out repository
21
+ uses: actions/checkout@v2
22
23
+ - name: Set up JDK ${{ matrix.java-version }}
24
+ uses: actions/setup-java@v2
25
+ with:
26
+ java-version: ${{ matrix.java-version }}
27
+ distribution: 'adoptopenjdk'
28
29
+ - name: Run tests
30
+ run: mvn test
31
32
+ - name: Build with Maven
33
+ run: mvn clean install
0 commit comments