Merge pull request #19 from jy95/updated-pom #110
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: Maven CI/CD | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
# https://github.com/actions/setup-java?tab=readme-ov-file#caching-packages-dependencies | |
- name: ☕ Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: 📦 Install dependencies | |
run: mvn install | |
- name: 🧪 Run tests with coverage | |
run: mvn test | |
- name: 🤖 Run codacy-coverage-reporter | |
uses: codacy/[email protected] | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: universal-coverage/target/site/jacoco-aggregate/jacoco.xml |