ci(deps): bump peter-evans/create-pull-request from 7.0.5 to 7.0.6 (#50) #263
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: | |
support_java_lts_versions: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
java: [11, 17, 21] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: ☕ Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: 📦 Install dependencies | |
run: mvn -P test install | |
- name: 🧪 Run tests with coverage | |
run: mvn -P test test | |
codacy_coverage: | |
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 -P test install | |
- name: 🧪 Run tests with coverage | |
run: mvn -P test 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 |