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 e71a535 commit defe8c3Copy full SHA for defe8c3
.github/workflows/build.yml
@@ -0,0 +1,33 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ paths-ignore:
7
+ - '**/README.md'
8
+ - README.md
9
+ - .gitignore
10
+ - .gitpod.yml
11
+ - LICENSE
12
+ pull_request:
13
14
15
16
17
18
19
20
21
+jobs:
22
+ build:
23
+ runs-on: ubuntu-latest
24
+ steps:
25
+ - uses: actions/checkout@v3
26
+ - name: Set up JDK 17
27
+ uses: actions/setup-java@v3
28
+ with:
29
+ java-version: '17'
30
+ distribution: 'temurin'
31
+ cache: maven
32
+ - name: Build with Maven
33
+ run: mvn -B test
0 commit comments