Skip to content

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3… #431

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3…

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3… #431

Workflow file for this run

name: Quick Build
on:
workflow_dispatch:
push:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Quick build
runs-on: ubuntu-latest
steps:
# SETUP BUILD ENVIRONMENT
- id: prepare-maven-build
name: Prepare Maven build
uses: sualeh/prepare-maven-build@v1.4.0
# BUILD AND TEST
- id: build-test
name: Build all modules and run tests
run: |
# Build
mvn \
--no-transfer-progress \
--batch-mode \
package
- id: code-climate
name: Test and publish code coverage to Code Climate
uses: paambaati/codeclimate-action@v9.0.0
if: github.ref == 'refs/heads/main'
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
JACOCO_SOURCE_PATH: "${{github.workspace}}/src/main/java"
with:
coverageLocations: ${{github.workspace}}/target/site/jacoco/jacoco.xml:jacoco