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 c3c1045 commit c0a3fc2Copy full SHA for c0a3fc2
.github/workflows/maven-multi-os.yml
@@ -33,6 +33,13 @@ jobs:
33
elif [[ "${{ runner.os }}" == "macOS" ]]; then
34
mvn validate -Dos.version=osx-x86_64
35
fi
36
+ - name: Run Tests with Maven
37
+ run: |
38
+ if [[ "${{ runner.os }}" == "Linux" ]]; then
39
+ mvn test -Dos.version=linux-x86_64
40
+ elif [[ "${{ runner.os }}" == "macOS" ]]; then
41
+ mvn test -Dos.version=osx-x86_64
42
+ fi
43
- name: Package with Maven (Fat JAR)
44
run: |
45
if [[ "${{ runner.os }}" == "Linux" ]]; then
0 commit comments