Skip to content

Commit

Permalink
ci: github actions sync (#1532)
Browse files Browse the repository at this point in the history
  • Loading branch information
micronaut-build authored Jan 31, 2023
1 parent f3a5133 commit 8377975
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17']
graalvm: ['latest']
graalvm: [ 'latest', 'dev' ]
java: [ '17' ]
include:
- graalvm: 'dev'
java: '19'
exclude:
- graalvm: 'dev'
java: '17'
steps:
# https://github.com/actions/virtual-environments/issues/709
- name: Free disk space
Expand Down
8 changes: 5 additions & 3 deletions config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,13 @@
<!-- Checks for Javadoc comments. -->
<!-- See https://checkstyle.org/config_javadoc.html -->
<module name="JavadocMethod">
<property name="excludeScope" value="private"/>
<property name="accessModifiers" value="public, protected"/>
</module>
<module name="JavadocType"/>
<module name="JavadocStyle"/>
<module name="MissingJavadocType"/>
<module name="MissingJavadocType">
<property name="severity" value="warning"/>
</module>

<!-- Checks for Naming Conventions. -->
<!-- See https://checkstyle.org/config_naming.html -->
Expand All @@ -118,7 +120,7 @@
<module name="IllegalImport"/> <!-- defaults to sun.* packages -->
<module name="RedundantImport"/>
<module name="UnusedImports">
<property name="processJavadoc" value="false"/>
<property name="processJavadoc" value="true"/>
</module>

<!-- Checks for Size Violations. -->
Expand Down

0 comments on commit 8377975

Please sign in to comment.