Skip to content

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.0.1 to 3.2.4 #103

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.0.1 to 3.2.4

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.0.1 to 3.2.4 #103

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Setup JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Start Redis Server
uses: supercharge/[email protected]
- name: Run Tests
run: mvn clean test jacoco:report -Dgithub=true
- name: Upload Test Coverage Report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./target/site/jacoco/jacoco.xml
flags: unit-tests
fail_ci_if_error: true
verbose: true