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 375ce52 commit 7964926Copy full SHA for 7964926
.github/workflows/pull-request.yml
@@ -0,0 +1,16 @@
1
+name: Maven verify
2
+on:
3
+ pull_request:
4
+ types: [ opened, reopened, edited ]
5
+jobs:
6
+ publish:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - name: Set up Maven Central Repository
11
+ uses: actions/setup-java@v2
12
+ with:
13
+ java-version: '8'
14
+ distribution: 'adopt'
15
+ - name: Run the Maven verify phase
16
+ run: mvn --batch-mode --update-snapshots -P dev verify
.github/workflows/release.yml
@@ -6,7 +6,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
- name: Set up Maven Central Repository
uses: actions/setup-java@v2
with:
0 commit comments