Skip TutorialTest during CI · lmdbjava/lmdbjava@8809f8e

Original file line numberDiff line numberDiff line change

@@ -32,7 +32,7 @@ jobs:

3232

key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

3333
3434

- name: Build with Maven

35-

run: mvn -B verify

35+

run: mvn -B -Dtest='!TutorialTest' verify

3636
3737

- name: Upload code coverage to Codecov

3838

uses: codecov/codecov-action@v1

@@ -67,7 +67,7 @@ jobs:

6767

key: ${{ runner.os }}-${{ matrix.java }}-m2-${{ hashFiles('**/pom.xml') }}

6868
6969

- name: Test with Maven

70-

run: mvn -B test

70+

run: mvn -B -Dtest='!TutorialTest' test

7171
7272

- name: Upload Surefire reports on test failure

7373

uses: actions/upload-artifact@v1