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 e621eb8 commit fed0c5dCopy full SHA for fed0c5d
.github/workflows/maven.yml
@@ -32,7 +32,7 @@ jobs:
32
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
33
34
- name: Build with Maven
35
- run: mvn -B verify
+ run: mvn -B -Dtest='!TutorialTest' verify
36
37
- name: Upload code coverage to Codecov
38
uses: codecov/codecov-action@v1
@@ -67,7 +67,10 @@ jobs:
67
key: ${{ runner.os }}-${{ matrix.java }}-m2-${{ hashFiles('**/pom.xml') }}
68
69
- name: Test with Maven
70
- run: mvn -B test
+ run: mvn -B -Dtest='!TutorialTest' test
71
+
72
+ - name: Test with Maven 2
73
+ run: mvn -B -Dtest='TutorialTest' test
74
75
- name: Upload Surefire reports on test failure
76
uses: actions/upload-artifact@v1
0 commit comments