Skip to content

Commit

Permalink
optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
wangliang181230 committed Oct 16, 2023
1 parent c8f4c79 commit 9deb9ca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,8 @@ jobs:
# step 4
- name: "Test with Maven"
run: |
./mvnw -T 4C clean test -e -B
if ([ "${{ matrix.os }}" == "windows-latest" ];) then
./mvnw -T 4C clean test -e -B;
else
./mvnw -T 4C clean test -Dcheckstyle.skip=true -Dlicense.skip=true -e -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn;
fi

0 comments on commit 9deb9ca

Please sign in to comment.