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 eed125f commit daef0f2Copy full SHA for daef0f2
.github/workflows/build.yml
@@ -1,8 +1,7 @@
1
name: Build
2
on:
3
push:
4
- pull_request_target:
5
- types: [labeled]
+
6
jobs:
7
build:
8
name: Build and Test
.github/workflows/pullrequest.yml
@@ -0,0 +1,27 @@
+name: Pull Request
+on:
+ pull_request:
+env:
+ JAVA_DIST: 'temurin'
+ JAVA_VERSION: 24
9
10
+defaults:
11
+ run:
12
+ shell: bash
13
14
+jobs:
15
+ test:
16
+ name: Compile and Test
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - uses: actions/setup-java@v4
21
+ with:
22
+ distribution: ${{ env.JAVA_DIST }}
23
+ java-version: ${{ env.JAVA_VERSION }}
24
+ cache: 'maven'
25
+ - name: Build and Test
26
+ id: buildAndTest
27
+ run: mvn -B clean verify
0 commit comments