We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The checkstyle plugin is bound to Maven's validate phase. When execute mvn verify, code will be checked. So the checkstyle workflow is redundant.
mvn verify
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.1.1</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>8.29</version> </dependency> </dependencies> <executions> <execution> <id>checkstyle</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin>
The text was updated successfully, but these errors were encountered:
[INLONG-1436] ci: delete checkstyle workflow
7b2112f
issue: apache#1436
[INLONG-1436] ci: delete checkstyle workflow (#1437)
13a6156
issue: #1436
[INLONG-1436] ci: delete checkstyle workflow (apache#1437)
ecee1b1
Successfully merging a pull request may close this issue.
The checkstyle plugin is bound to Maven's validate phase. When execute
mvn verify
, code will be checked. So the checkstyle workflow is redundant.The text was updated successfully, but these errors were encountered: