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 a7323e9 commit ee1c45dCopy full SHA for ee1c45d
.github/workflows/maven.yml
@@ -32,6 +32,21 @@ jobs:
32
- name: Build with Maven
33
run: mvn package --file pom.xml -B --no-transfer-progress
34
35
+ min-versions:
36
+ runs-on: ubuntu-latest
37
+ steps:
38
+ - uses: actions/checkout@v3
39
+ - name: Set up JDK 8
40
+ uses: actions/setup-java@v3
41
+ with:
42
+ java-version: '8'
43
+ distribution: 'temurin'
44
+ cache: 'maven'
45
+ - name: Build with Maven
46
+ run: mvn compile --file pom.xml -B --no-transfer-progress
47
+ - name: Test with Maven
48
+ run: mvn test --file pom.xml -B --no-transfer-progress -Pmin-versions
49
+
50
native-module:
51
runs-on: ubuntu-latest
52
steps:
0 commit comments