Skip to content

Commit

Permalink
Merge pull request #74 from garethjevans/javadoc
Browse files Browse the repository at this point in the history
fix: correct invalid javadoc, add a check to validate
  • Loading branch information
ADI10HERO authored Jul 20, 2021
2 parents 9aad51a + 314a1c6 commit 7d9af46
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/javadoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Javadoc

on:
pull_request:

jobs:
javadoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11

- name: Javadoc
run: |
mvn --no-transfer-progress javadoc:javadoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class ProjectTypeFactory {
}

/**
* Detects & returns the type of the project.
* Detects & returns the type of the project.
*
* @param directory The project's directory.
* @return Detected project type.
Expand Down

0 comments on commit 7d9af46

Please sign in to comment.