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
This action calls PMD and PMD requires a Java runtime for execution. In the README.md the following basic configuration is suggested:
steps: - uses: actions/setup-java@v2 with: distribution: 'temurin' java-version: '11' - uses: pmd/pmd-github-action@v1 with: rulesets: 'ruleset.xml'
However, the "actions/setup-java" step is not really necessary, since Java is one of the pre-installed tools in the runners. See https://github.com/actions/virtual-environments/ and more specifically https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md#java This is available under all operating systems.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This action calls PMD and PMD requires a Java runtime for execution.
In the README.md the following basic configuration is suggested:
However, the "actions/setup-java" step is not really necessary, since Java is one of the pre-installed tools in the runners. See https://github.com/actions/virtual-environments/ and more specifically https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md#java
This is available under all operating systems.
The text was updated successfully, but these errors were encountered: