This file contains 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 for Java Project | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Install dependencies and run tests | |
run: mvn install -B | |
- name: Run tests | |
run: mvn test --no-transfer-progress | |
javadoc: | |
runs-on: ubuntu-latest | |
needs: test # Ensures the javadoc job runs after tests pass | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Generate Javadoc | |
run: mvn javadoc:javadoc --no-transfer-progress | |
- name: Verify Javadoc | |
run: | | |
if [ -d docs/apidocs ]; then | |
echo "Javadoc generated successfully." | |
else | |
echo "Javadoc failed to generate!" | |
exit 1 | |
fi | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs | |
publish_branch: gh-pages | |
force_orphan: true |