Move CompleterHelper class to main package and added more detailed ja… #31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build | |
| run: mvn -B compile --file pom.xml | |
| - name: Run Tests | |
| run: mvn -B test --file pom.xml | |
| - name: Deploy Javadoc to GitHub Pages | |
| uses: MathieuSoysal/Javadoc-publisher.yml@v3.0.2 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| javadoc-branch: javadoc | |
| java-version: 21 | |
| project: maven |