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 d6207a8 commit 7ee4d4fCopy full SHA for 7ee4d4f
.github/workflows/ci.yml
@@ -1,6 +1,6 @@
1
name: CI
2
3
-on: [push]
+on: [push, pull_request]
4
5
jobs:
6
build:
@@ -21,4 +21,10 @@ jobs:
21
cache: 'maven'
22
23
- name: Build with Maven
24
- run: mvn package
+ run: mvn -B --no-transfer-progress package
25
+
26
+ - name: Verify jar compatibility
27
+ uses: pivovarit/verify-jar-action@v1.2.0
28
+ with:
29
+ directory: 'java-jpms-jdk8/target'
30
+ java-version: '8'
java-jpms-jdk8/pom.xml
@@ -18,8 +18,7 @@
18
<groupId>org.apache.maven.plugins</groupId>
19
<artifactId>maven-compiler-plugin</artifactId>
20
<configuration>
- <source>8</source>
- <target>8</target>
+ <release>8</release>
</configuration>
</plugin>
<plugin>
0 commit comments