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 c3cb371 commit 797d5e4Copy full SHA for 797d5e4
.github/workflows/java-pr-check.yml
@@ -0,0 +1,29 @@
1
+name: Java Pull Request Check
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
7
+ pull_request:
8
9
10
+ workflow_dispatch:
11
12
+jobs:
13
+ checking-pr:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Set up JDK 8
20
+ uses: actions/setup-java@v4
21
+ with:
22
+ java-version: '8'
23
+ distribution: 'adopt'
24
25
+ - name: Build with Maven
26
+ run: mvn clean install
27
28
+ - name: Run tests
29
+ run: mvn test
0 commit comments